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 /guides | |
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 'guides')
-rw-r--r-- | guides/source/initialization.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md index c0c8b7d4b6..199545a3b3 100644 --- a/guides/source/initialization.md +++ b/guides/source/initialization.md @@ -34,7 +34,7 @@ Launch! Let's start to boot and initialize the app. A Rails application is usually started by running `rails console` or `rails server`. -### `railties/bin/rails` +### `railties/exe/rails` The `rails` in the command `rails server` is a ruby executable in your load path. This executable contains the following lines: @@ -45,7 +45,7 @@ load Gem.bin_path('railties', 'rails', version) ``` If you try out this command in a Rails console, you would see that this loads -`railties/bin/rails`. A part of the file `railties/bin/rails.rb` has the +`railties/exe/rails`. A part of the file `railties/exe/rails.rb` has the following code: ```ruby |