diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-10-27 16:49:17 -0300 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-10-27 16:49:17 -0300 |
commit | 3aacb7ec783fd6ce7c26bed5a202ff149baf4351 (patch) | |
tree | ab9c1612c6a03c5607c0e5017a129e13a1f6ed36 | |
parent | 79c2d23b93153952c97e7ee44ecece09bb622dbf (diff) | |
download | rails-3aacb7ec783fd6ce7c26bed5a202ff149baf4351.tar.gz rails-3aacb7ec783fd6ce7c26bed5a202ff149baf4351.tar.bz2 rails-3aacb7ec783fd6ce7c26bed5a202ff149baf4351.zip |
remove the skip_jbuilder option, just rm it from the Gemfile
-rw-r--r-- | railties/lib/rails/generators/app_base.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb index d0e8b69dad..f0bef75dd7 100644 --- a/railties/lib/rails/generators/app_base.rb +++ b/railties/lib/rails/generators/app_base.rb @@ -47,9 +47,6 @@ module Rails class_option :skip_sprockets, type: :boolean, aliases: '-S', default: false, desc: 'Skip Sprockets files' - class_option :skip_jbuilder, type: :boolean, default: false, - desc: "Don't include jbuilder in the Gemfile" - class_option :database, type: :string, aliases: '-d', default: 'sqlite3', desc: "Preconfigure for selected database (options: #{DATABASES.join('/')})" |