lib/rails_templater/cli.rb in rails_templater-0.2.1 vs lib/rails_templater/cli.rb in rails_templater-0.3.0

- old
+ new

@@ -4,10 +4,9 @@ class Cli < Thor::Group argument :application_name, :type => :string, :desc => "The name of the rails application" desc "Generates a new Rails application with templater'" def run_templater - system("rails new #{application_name} -O -m #{RailsTemplater::template_runner}") + system("rails new #{application_name} -JO --skip-bundle -m #{RailsTemplater::template_runner}") end - end end