Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | application loader refactor and test suite complete rewrite | Xavier Noria | 2013-04-11 | 1 | -28/+27 |
| | |||||
* | code review of 22e5ab3 | Xavier Noria | 2013-04-10 | 1 | -8/+7 |
| | |||||
* | Searching for rails executable correctly | Prathamesh Sonpatki | 2013-04-10 | 1 | -16/+11 |
| | | | | | | | | | | * Current logic of finding Rails executable in parent directory is not returning full path of executable if it is found in one of the parent directories * To compensate for this, we have to call exec_app_rails recursively until the executable is found or we cant do 'chdir' anymore * This solution finds the correct executable path from parent directory(s) recursively | ||||
* | Explain how to upgrade bin/ for Rails 4 | Jeremy Kemper | 2013-04-09 | 1 | -8/+29 |
| | |||||
* | fix binstub typo | Andre Arko | 2013-03-30 | 1 | -1/+1 |
| | |||||
* | need to delete bin, not binstub, update wording | Andre Arko | 2013-03-27 | 1 | -4/+4 |
| | |||||
* | script/rails could never be from bundler | Andre Arko | 2013-03-27 | 1 | -1/+1 |
| | |||||
* | rails commands even if bin/rails is a gem stub | Andre Arko | 2013-03-20 | 1 | -10/+20 |
| | |||||
* | Fix backwards compatibility with Rails 3 apps. | Steve Klabnik | 2013-02-22 | 1 | -8/+16 |
| | | | | | | | | | | | | | | | When we removed script/rails and introduced bin/rails, we accidentally introduced a regression. If you install Rails 4 as a gem, then try to do something in a Rails 3 application: $ rails g This will throw the 'please type rails new foo' message rather than the proper generator documentation message. This is because older apps don't have bin/rails. Therefore, we now *prefer* bin/rails, but still search for script/rails, and exec the one we find. | ||||
* | Introduce ./bin for your app's executables: bin/bundle, bin/rails, bin/rake. ↵ | Jeremy Kemper | 2013-01-06 | 1 | -0/+29 |
Executable scripts are versioned code like the rest of your app. To generate a stub for a bundled gem: 'bundle binstubs unicorn' and 'git add bin/unicorn' |