lib/rails_templater/cli.rb in rails_templater-0.0.2 vs lib/rails_templater/cli.rb in rails_templater-0.1.1
- old
+ new
@@ -4,10 +4,10 @@
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} -JOT -m #{RailsTemplater::template_path}")
+ system("rails new #{application_name} -O -m #{RailsTemplater::template_runner}")
end
end
end