Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove rails info route from rake routes output [#5452 state:resolved] | Andrew White | 2010-08-25 | 1 | -1/+1 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Hide internal apps from rake routes [#5443 state:resolved] | José Valim | 2010-08-24 | 1 | -1/+1 | |
| | ||||||
* | Improve routes task code and print the application as :to => RackApp. [#5338 ↵ | José Valim | 2010-08-15 | 1 | -12/+24 | |
| | | | | state:resolved] | |||||
* | make rake routes print the name of a Rack endpoint app [#5338 state:resolved] | Mark Turner | 2010-08-15 | 1 | -3/+5 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -4/+4 | |
| | | | | 's/[ \t]*$//' -i {} \;) | |||||
* | the main page of the API generated by the doc:rails task is README | Xavier Noria | 2010-07-30 | 1 | -1/+1 | |
| | ||||||
* | Fix app generator so that it uses the right app_name during rails:update ↵ | rohit | 2010-07-27 | 1 | -1/+1 | |
| | | | | | | rake task. [#5207 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Change some missing README -> README.rdoc | Santiago Pastorino | 2010-07-22 | 1 | -8/+8 | |
| | ||||||
* | Avoid calls to Rails::Application since this is not the official API. | José Valim | 2010-07-01 | 2 | -2/+2 | |
| | | | | Your application should *always* reference your application const (as Blog::Application) and Rails.application should be used just internally. | |||||
* | Cut down even further on rake -T noise | David Heinemeier Hansson | 2010-06-09 | 2 | -10/+41 | |
| | ||||||
* | Cut down on tasks shown in rake -T | David Heinemeier Hansson | 2010-06-09 | 5 | -21/+21 | |
| | ||||||
* | Remove the laziness from the middleware stack. | José Valim | 2010-06-03 | 1 | -1/+1 | |
| | ||||||
* | Removing Metal from Rails 3. | wycats | 2010-06-03 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed. | |||||
* | Add some comments related to Hash method check. | José Valim | 2010-05-16 | 1 | -0/+3 | |
| | ||||||
* | Fix Hash#index deprecated warning in 1.9.x [#4600 state:resolved] | Aleksandr Koss | 2010-05-16 | 1 | -1/+2 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Added Rake task rails:templates:copy to copy templates for customization ↵ | Jeroen van Dijk + Rodrigo Urubatan | 2010-05-15 | 1 | -0/+22 | |
| | | | | | | [#4574 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Ensure application rake tasks and generators are loaded after the ones ↵ | José Valim | 2010-04-26 | 1 | -0/+2 | |
| | | | | specified in railties/engines/rails. [#4471 state:resolved] | |||||
* | periods are not metacharacters within character classes | Xavier Noria | 2010-03-30 | 1 | -1/+1 | |
| | ||||||
* | Remove if/else branch when generating the documentation since we are simply ↵ | José Valim | 2010-03-30 | 1 | -52/+37 | |
| | | | | inspecting the load path. | |||||
* | Changed gem_path to yield the path found in $LOAD_PATH to a block. | postmodern | 2010-03-30 | 1 | -15/+33 | |
| | | | | | | | * This allows gems not found in $LOAD_PATH to be safely ignored by the rails documentation task. Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Fix syntax error and avoid the use of unless/else. | Michael Koziarski | 2010-03-30 | 1 | -8/+9 | |
| | ||||||
* | Just inspect load paths to generate the documentation. | José Valim | 2010-03-30 | 1 | -6/+1 | |
| | ||||||
* | Work without bundler | Jeremy Kemper | 2010-03-29 | 1 | -31/+46 | |
| | ||||||
* | Revert "Reorganized app/test directory. [#3057 state:resolved]" | José Valim | 2010-03-29 | 1 | -46/+1 | |
| | | | | This reverts commit a0dc6755db71b33aebccdb95fd0dd7097c934c04. | |||||
* | Reorganized app/test directory. [#3057 state:resolved] | Rizwan Reza | 2010-03-28 | 1 | -1/+46 | |
| | | | | | | | | | | Run 'rake update:test_directory' to reorganize your already generated apps. test/functional -> test/controllers test/functional -> test/controllers test/unit/helpers -> test/helpers test/unit/**/*_observer_test.rb -> test/observers test/unit -> test/models | |||||
* | Reapply Rizwan's patch, but memoize Bundler.load.specs in an ivar. [#3697 ↵ | Rizwan Reza | 2010-03-28 | 1 | -41/+34 | |
| | | | | | state:resolved] Signed-off-by: wycats <wycats@gmail.com> | |||||
* | Do not check for a valid const name in Rails 3.0 applications. [#4200 ↵ | José Valim | 2010-03-27 | 1 | -1/+2 | |
| | | | | state:resolved] | |||||
* | rake tasks should use the new app generator path [#4257 state:resolved] | Sebastian Martinez | 2010-03-23 | 1 | -2/+2 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Autoload Rails::Info | Joshua Peek | 2010-03-20 | 1 | -1/+0 | |
| | ||||||
* | Move railties/builtin into lib | Joshua Peek | 2010-03-20 | 2 | -7/+7 | |
| | ||||||
* | Deprecated framework rake tasks should exit with non-zero exit code [#4177 ↵ | Chris Griego | 2010-03-16 | 1 | -3/+3 | |
| | | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Revert "Rake task for generating Rails documentation updated to support ↵ | Jeremy Kemper | 2010-03-11 | 1 | -33/+41 | |
| | | | | | | | | Bundler." Incredibly slow. Fix gem_path to not load the bundle fresh each call. This reverts commit 58796dcfc0d74fa3def752fa8b779f725f0747f0. | |||||
* | Rake task for generating Rails documentation updated to support Bundler. | Rizwan Reza | 2010-03-11 | 1 | -41/+33 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | If RAILS_PATH isn't set, make a dummy doc task | Jeremy Kemper | 2010-03-07 | 1 | -32/+40 | |
| | ||||||
* | rake doc:rails complains loudly if there's no path to generate docs from | Jeremy Kemper | 2010-03-07 | 1 | -1/+3 | |
| | ||||||
* | Leverage VERSION constants from gemspecs to avoid tedious updates when releasing | Bryan Helmkamp | 2010-03-02 | 1 | -1/+1 | |
| | ||||||
* | Remove references to ActionDispatch::Routing::Routes in favor of ↵ | Carl Lerche | 2010-02-24 | 1 | -2/+2 | |
| | | | | Rails.appication.routes. | |||||
* | Use ActionDispatch::Routing everywhere | Martin Schürrer | 2010-02-21 | 1 | -2/+2 | |
| | ||||||
* | Also check if application is a valid constant in rake rails:update. | José Valim | 2010-02-21 | 1 | -5/+11 | |
| | ||||||
* | Bump git versions to 3.0.0.beta1 since we've released | Jeremy Kemper | 2010-02-05 | 1 | -1/+1 | |
| | ||||||
* | Move to 3.0.0.beta | David Heinemeier Hansson | 2010-02-03 | 1 | -1/+1 | |
| | ||||||
* | Deprecated freeze rake tasks and cleaned up annotations.rake | Mikel Lindsaar | 2010-02-03 | 2 | -69/+8 | |
| | ||||||
* | Added "rake about" as a replacement for script/about [DHH] | David Heinemeier Hansson | 2010-02-02 | 1 | -0/+7 | |
| | ||||||
* | Hide '/rails/info/properties' from 'rake routes' [#3793 state:resolved] | Prem Sichanugrist | 2010-02-02 | 1 | -0/+1 | |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | |||||
* | Only load testing tasks if test unit is being used. | José Valim | 2010-01-29 | 1 | -130/+0 | |
| | ||||||
* | Middleware stack actually runs routes and not the application. | José Valim | 2010-01-26 | 1 | -1/+1 | |
| | ||||||
* | Ensure proper class is shown on rake middleware. | José Valim | 2010-01-26 | 1 | -1/+1 | |
| | ||||||
* | Revamp of Rails documentation task | Rizwan Reza | 2010-01-24 | 1 | -23/+31 | |
| | | | | Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local> | |||||
* | Add Rails::Application pointer to the default app to add symmetry to ↵ | Joshua Peek | 2010-01-24 | 1 | -1/+1 | |
| | | | | Foo::Application | |||||
* | Ensure namespaced controllers in engines work. | José Valim | 2010-01-24 | 1 | -0/+1 | |
| |