Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 4174015

Browse files
committed
Appease Rubocop
1 parent 12b2b98 commit 4174015

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

lib/generators/vueport/install_generator.rb

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,25 +66,27 @@ def run_bundle_install
6666
run 'bundle install' if yes?("Would you like me to run 'bundle install' for you? [y/N]")
6767
end
6868

69+
# rubocop:disable Metrics/MethodLength
6970
def whats_next
70-
say ""
71+
say ''
7172
say 'All done!', :green
7273

73-
say ""
74+
say ''
7475
say "I've added a few things here and there to set you up using Vue in your Rails app."
7576
say "Now you're already to create your first Vue component in app/components."
76-
say ""
77+
say ''
7778

78-
say "To run the webpack-dev-server and rails server:"
79+
say 'To run the webpack-dev-server and rails server:'
7980
say 'foreman start -f Procfile.dev', :yellow
80-
say ""
81+
say ''
8182

82-
say "For more info, see the README.md for this gem at:"
83-
say "https://github.com/samtgarson/vueport", :blue
84-
say ""
83+
say 'For more info, see the README.md for this gem at:'
84+
say 'https://github.com/samtgarson/vueport', :blue
85+
say ''
8586

86-
say "Thanks for using Vueport!"
87+
say 'Thanks for using Vueport!'
8788
end
89+
# rubocop:enable Metrics/MethodLength
8890

8991
private
9092

0 commit comments

Comments
 (0)