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/railties.gemspec | |
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/railties.gemspec')
-rw-r--r-- | railties/railties.gemspec | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/railties.gemspec b/railties/railties.gemspec index 001882fdc6..7cb1f1a49c 100644 --- a/railties/railties.gemspec +++ b/railties/railties.gemspec @@ -15,10 +15,10 @@ Gem::Specification.new do |s| s.email = 'david@loudthinking.com' s.homepage = 'http://www.rubyonrails.org' - s.files = Dir['CHANGELOG.md', 'README.rdoc', 'RDOC_MAIN.rdoc', 'bin/**/*', 'lib/**/{*,.[a-z]*}'] + s.files = Dir['CHANGELOG.md', 'README.rdoc', 'RDOC_MAIN.rdoc', 'exe/**/*', 'lib/**/{*,.[a-z]*}'] s.require_path = 'lib' - s.bindir = 'bin' + s.bindir = 'exe' s.executables = ['rails'] s.rdoc_options << '--exclude' << '.' |