diff options
author | Islam Wazery <wazery@ubuntu.com> | 2015-04-11 18:44:27 +0200 |
---|---|---|
committer | Islam Wazery <wazery@ubuntu.com> | 2015-04-11 19:26:34 +0200 |
commit | 4521aadae00b3c39fb46124e7c76e6527d3f3273 (patch) | |
tree | 7e0968c9a3ec2132d5901dcb05cf8f6a2685acf7 /railties/test/isolation | |
parent | 24970a69cbfa91e3e9322c88e620663a84035bda (diff) | |
download | rails-4521aadae00b3c39fb46124e7c76e6527d3f3273.tar.gz rails-4521aadae00b3c39fb46124e7c76e6527d3f3273.tar.bz2 rails-4521aadae00b3c39fb46124e7c76e6527d3f3273.zip |
Rename railties/bin to railties/exe
That will match the new Bundler executables convention.
Bundler Blog Post: http://bundler.io/blog/2015/03/20/moving-bins-to-exe.html
Also updated the necessary tests.
Diffstat (limited to 'railties/test/isolation')
-rw-r--r-- | railties/test/isolation/abstract_unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/isolation/abstract_unit.rb b/railties/test/isolation/abstract_unit.rb index 63209559d7..4509797da1 100644 --- a/railties/test/isolation/abstract_unit.rb +++ b/railties/test/isolation/abstract_unit.rb @@ -322,7 +322,7 @@ Module.new do environment = File.expand_path('../../../../load_paths', __FILE__) require_environment = "-r #{environment}" - `#{Gem.ruby} #{require_environment} #{RAILS_FRAMEWORK_ROOT}/railties/bin/rails new #{app_template_path} --skip-gemfile --no-rc` + `#{Gem.ruby} #{require_environment} #{RAILS_FRAMEWORK_ROOT}/railties/exe/rails new #{app_template_path} --skip-gemfile --no-rc` File.open("#{app_template_path}/config/boot.rb", 'w') do |f| f.puts "require '#{environment}'" f.puts "require 'rails/all'" |