diff options
author | Yves Senn <yves.senn@gmail.com> | 2016-04-19 23:26:36 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2016-04-19 23:26:36 +0200 |
commit | 0ff0add0400cdee5869d246315cc2551347187aa (patch) | |
tree | 41b3bb52b193aa7944851c38a904ed9966cbb94c | |
parent | 63d89bdf63b448a738e07d562157ac113cb614f3 (diff) | |
parent | bee4c8f00dbd32406907dc13f7cb6ca8b0a932e5 (diff) | |
download | rails-0ff0add0400cdee5869d246315cc2551347187aa.tar.gz rails-0ff0add0400cdee5869d246315cc2551347187aa.tar.bz2 rails-0ff0add0400cdee5869d246315cc2551347187aa.zip |
Merge pull request #24619 from BenMorganIO/use-rails-5-in-rails-engine-bin
remove rails 4 specification in bin/rails for plugins [ci skip]
-rw-r--r-- | railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt b/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt index 3edaac35c9..56e7925c6b 100644 --- a/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt +++ b/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt @@ -1,4 +1,5 @@ -# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application. +# This command will automatically be run when you run "rails" with Rails gems +# installed from the root of your application. ENGINE_ROOT = File.expand_path('../..', __FILE__) ENGINE_PATH = File.expand_path('../../lib/<%= namespaced_name -%>/engine', __FILE__) |