aboutsummaryrefslogtreecommitdiffstats
path: root/railties
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix up failing tests broke by 2316e7dJoshua Peek2009-02-072-36/+37
| |
| * Fix FCGI handler with lighttpd [#1854 state:resolved]Joshua Peek2009-02-071-4/+6
| |
| * This is no longer relevant when the 500.html is comletely staticDavid Heinemeier Hansson2009-02-061-40/+0
| |
| * Merge branch 'master' of git@github.com:rails/railsDavid Heinemeier Hansson2009-02-06110-16/+18544
| |\
| | * Cleanup application has been merged with reloadJoshua Peek2009-02-051-1/+0
| | |
| | * Merge docrails along with the new guides and guides generation codePratik Naik2009-02-06106-9/+18526
| | |
| | * Revert "Fixed FCGI handling [#1854 state:resolved]"Joshua Peek2009-02-051-2/+0
| | | | | | | | | | | | This reverts commit dcc2407d9976740cebe6736ec6adeae269b81203.
| | * re-enable db:schema:dump so db:migrate:redo dumps the schema after migrating ↵Will Bryant2009-02-061-0/+1
| | | | | | | | | | | | | | | | | | | | | back up Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1412 state:committed]
| | * Make sure all autoload constants are pulled in when using config.threadsafe! ↵Joshua Peek2009-02-051-2/+2
| | | | | | | | | | | | [#1831 state:resolved]
| | * Fixed FCGI handling [#1854 state:resolved]Peter Wagenet2009-02-051-0/+2
| | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
| | * script/server command can accept --path option to set app's root path [#1156 ↵Chris Cherry2009-02-051-4/+15
| | | | | | | | | | | | | | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
| * | Remove the ERb in the 500 as it looks dumb when served by the web server ↵David Heinemeier Hansson2009-02-061-3/+0
| |/ | | | | | | directly. Also, to instructions will often be wrong (the error might well be in the web server log)
| * Fix broken scaffolding tests [#1889 state:committed]Mike Gunderloy2009-02-051-2/+2
| | | | | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
| * A few more minor scaffold template cleanupsDavid Heinemeier Hansson2009-02-055-7/+7
| |
| * Update scaffolding [#1840 state:committed]Mike Gunderloy2009-02-052-2/+2
| | | | | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
| * Merge branch 'master' of git@github.com:rails/railsJeremy Kemper2009-02-03146-43584/+0
| |\
| | * Remove all the existing asciidoc guidesPratik Naik2009-02-04146-43774/+0
| | |
| | * Merge docrailsPratik Naik2009-02-0310-91/+281
| | |
| * | Bump mocha requirement for Ruby 1.9 compat. Remove uses_mocha.Jeremy Kemper2009-02-038-558/+525
| |/
| * Mark CHANGELOGs for releaseDavid Heinemeier Hansson2009-02-011-1/+1
| |
| * Merge docrailsPratik Naik2009-02-0129-944/+4690
| |
| * Add Rails Guides to the default links on generated index.html [#1839 ↵Mike Gunderloy2009-02-011-0/+1
| | | | | | | | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Add :reconnect option to generated mysql database.yml [#1838 state:resolved]Mike Gunderloy2009-02-011-0/+3
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Make tests passYehuda Katz2009-02-022-2/+2
| |
* | Merge commit 'rails/3-0-unstable'Yehuda Katz2009-01-301-1/+1
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | Conflicts: actionpack/lib/action_controller/base.rb actionpack/lib/action_dispatch/http/mime_type.rb actionpack/lib/action_dispatch/http/request.rb actionpack/lib/action_view/base.rb actionpack/lib/action_view/paths.rb actionpack/test/controller/session/cookie_store_test.rb actionpack/test/dispatch/rack_test.rb actionpack/test/dispatch/request_test.rb
| * Reorganize ActionController folder structureJoshua Peek2009-01-271-1/+1
| |
* | Added options to script/dbconsole to sqlite3 console in various different ↵Bryan Ray2009-01-281-1/+17
| | | | | | | | | | | | modes. [#607 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Disable eager loading for all rake tasks [#802 state:resolved]Joshua Peek2009-01-273-3/+5
| |
* | Fix the changelog entryPratik Naik2009-01-231-2/+2
|/
* Setup ActiveRecord QueryCache middleware in the initializerJoshua Peek2009-01-211-0/+1
|
* Only insert metal middleware if any existJoshua Peek2009-01-211-1/+3
|
* Merge docrailsPratik Naik2009-01-1859-13877/+11698
|
* Bump up the year in MIT license filesPratik Naik2009-01-182-2/+2
|
* Remove script/performance/profiler in favour of performance integration tests.Pratik Naik2009-01-184-10/+7
| | | | | | To continue using script/performance/profiler, install the request_profiler plugin : script/plugin install git://github.com/rails/request_profiler.git
* Decouple the local cache strategy from MemCacheStore for reuse with other ↵Lourens Naude2009-01-171-2/+4
| | | | | | remote stores [#1653 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Added in a local per request cache to MemCacheStore. It acts as a buffer to ↵Nahum Wild2009-01-151-0/+3
| | | | | | stop unneccessary requests being sent through to memcache [#1653 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Use Rack's MethodOverride lib [#1699 state:resolved]Joshua Peek2009-01-131-1/+1
|
* Use :key instead of old :session_key in session_store.rb generator and docs ↵Cody Fauser2009-01-132-2/+2
| | | | | | [#1746 state:resovled] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Fix test broken by test process changesJeremy Kemper2009-01-071-7/+4
|
* Include process methods in ActionController::TestCase only. No need to ↵Jeremy Kemper2009-01-071-1/+1
| | | | alias_method_chain :process either.
* Consolidate test_help requiresJeremy Kemper2009-01-061-2/+1
|
* Move metal above method piggybacking middleware and add some test coverageJoshua Peek2009-01-031-1/+1
|
* Fixed bug where calling app method from console would raise ArgumentError ↵ddemaree2009-01-021-0/+9
| | | | | | [#1629 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Only silence backtrace from plugin lib dirsJeremy Kemper2008-12-301-1/+2
|
* Clean trailing / after rails root from backtracesJeremy Kemper2008-12-301-1/+1
|
* Clean up view path cruft and split path implementations into Template::Path ↵Joshua Peek2008-12-291-3/+4
| | | | and Template::EagerPath
* Fix failing gem dependency tests [#1659 state:resolved]Mike Gunderloy2008-12-291-12/+12
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix FCGI dispatching testsMike Gunderloy2008-12-291-42/+7
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Allow custom rails generators to pass in their own binding to Create command ↵Joshua Peek2008-12-281-1/+1
| | | | so that the corresponding erb templates get rendered with the proper binding [#1493 state:resolved]
* Ensure template runner tests don't depend on hash ordering [#1654 ↵Mike Gunderloy2008-12-282-2/+2
| | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>