aboutsummaryrefslogtreecommitdiffstats
path: root/railties
Commit message (Collapse)AuthorAgeFilesLines
* Added that rake clone_structure_to_test, db_structure_dump, and ↵David Heinemeier Hansson2005-01-113-14/+17
| | | | | | purge_test_database tasks now pick up the source database to use from RAILS_ENV instead of just forcing development #424 [Tobias Luetke] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@379 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed script/console to work with Windows (that requires the use of irb.bat) ↵David Heinemeier Hansson2005-01-102-2/+9
| | | | | | #418 [octopod] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@375 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added inclusion of fix for test/unit and rake problems with Ruby 1.8.2David Heinemeier Hansson2005-01-101-0/+2
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@361 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added rewrite conditions needed for page caching to workDavid Heinemeier Hansson2005-01-081-0/+6
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@348 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed WEBrick servlet slowdown over time by restricting the load path ↵David Heinemeier Hansson2005-01-062-1/+3
| | | | | | reloading to mod_ruby #372 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@342 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Removed Fancy Indexing as a default option on the WEBrick servlet as it made ↵David Heinemeier Hansson2005-01-042-1/+6
| | | | | | it harder to use various caching schemes git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@337 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Include package dependency informationDavid Heinemeier Hansson2005-01-041-0/+2
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@335 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Upgrade the dependencies of the Rails gemDavid Heinemeier Hansson2005-01-041-3/+3
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@334 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Prepared for release of 0.9.3David Heinemeier Hansson2005-01-042-9/+9
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@333 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added support for SQLite in the auto-dumping/importing of schemas for ↵David Heinemeier Hansson2005-01-032-0/+8
| | | | | | development -> test #416 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@325 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Nuke the controllers after the dispatcher reload to avoid the superclass ↵David Heinemeier Hansson2005-01-021-1/+1
| | | | | | mismatch problem git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@323 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed problems with dependency caching and controller hierarchies on Ruby ↵David Heinemeier Hansson2005-01-023-4/+12
| | | | | | 1.8.2 in development mode #351 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@317 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added automated rewriting of the shebang lines on installs through the gem ↵David Heinemeier Hansson2005-01-012-12/+27
| | | | | | rails command #379 [Manfred Stienstra] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@300 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed that generated action_mailers doesnt need to require the action_mailer ↵David Heinemeier Hansson2004-12-312-2/+2
| | | | | | since thats already done in the environment #382 [Lucas Carlson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@287 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Updated Rakefiles for the server moveDavid Heinemeier Hansson2004-12-301-2/+2
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@283 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed dependency management to happen in a unified fashion for Active Record ↵David Heinemeier Hansson2004-12-301-0/+17
| | | | | | and Action Pack using the new Dependencies module. This means that the environment options needs to change. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@282 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Switch dispatcher to use the new shared Dependencies approachDavid Heinemeier Hansson2004-12-294-9/+5
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@280 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added ActionMailer::Base.deliver_method = :test to the test environment so ↵David Heinemeier Hansson2004-12-232-2/+3
| | | | | | that mail objects are available in ActionMailer::Base.deliveries for functional testing. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@268 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added ActionMailer::Base.raise_delivery_errors = false to the test ↵David Heinemeier Hansson2004-12-232-0/+3
| | | | | | environment as we checks will be performed against deliveries array instead. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@267 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* WordNet not NetsDavid Heinemeier Hansson2004-12-231-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@265 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Touched up wording on the new recommendation stuff for generate modelsDavid Heinemeier Hansson2004-12-232-7/+7
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@264 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added protection for creating a model through the generators with a name of ↵David Heinemeier Hansson2004-12-237-5/+71
| | | | | | an existing class, like Thread or Date. It'll even offer you a synonym using wordnet.princeton.edu as a look-up. No, I'm not kidding :) [Florian Gross] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@263 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Releasing Rails 0.9.2David Heinemeier Hansson2004-12-222-5/+7
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@260 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* You should redirect externally on the default actionDavid Heinemeier Hansson2004-12-221-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@255 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed CTRL-C exists from the Breakpointer to be a clean affair without error ↵David Heinemeier Hansson2004-12-222-1/+8
| | | | | | dumping [Kent Sibilev] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@246 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed "rake stats" to work with sub-directories in models and controllers ↵David Heinemeier Hansson2004-12-223-7/+42
| | | | | | and to report the code to test ration [Scott Baron] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@245 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* The dispatcher should reload the associations AFTER clearing the inheritable ↵David Heinemeier Hansson2004-12-221-1/+1
| | | | | | variables, not before, or callbacks and others wont work git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@243 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added a require_association hook on const_missing that makes it possible to ↵David Heinemeier Hansson2004-12-202-1/+3
| | | | | | use any model class without requiring it first. Added that Active Record associations are now reloaded instead of cleared to work with the new const_missing hook in Active Record. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@233 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added graceful handling of an inaccessible log file by redirecting output to ↵David Heinemeier Hansson2004-12-193-3/+25
| | | | | | STDERR with a warning #330 [rainmkr] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@223 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Updated the documentation #329 [rainmkr]David Heinemeier Hansson2004-12-191-5/+5
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@222 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Added support for a -h/--help parameter in the generator #331 [Ulysses]David Heinemeier Hansson2004-12-192-0/+4
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@219 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* File.expand_path in config/environment.rb would fail when dealing with ↵David Heinemeier Hansson2004-12-183-2/+7
| | | | | | symlinked public directories [mjobin]. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@208 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@205 ↵David Heinemeier Hansson2004-12-171-0/+1
| | | | 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@203 ↵David Heinemeier Hansson2004-12-171-1/+1
| | | | 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Upgraded to Action Pack 1.0.1 for important bug fix. Updated gem dependencies.David Heinemeier Hansson2004-12-173-4/+12
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@202 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Cut down on the documentation visibleDavid Heinemeier Hansson2004-12-161-11/+10
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@200 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed a small bug in the new referencing of DEFAULT_SESSION_OPTIONSDavid Heinemeier Hansson2004-12-161-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@199 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Rails 0.9 is a realityDavid Heinemeier Hansson2004-12-161-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@198 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Made the last tweaks before 0.9David Heinemeier Hansson2004-12-164-6/+39
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@197 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Updated documentationDavid Heinemeier Hansson2004-12-162-1/+45
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@196 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Only requests that require processing from a controller should block the ↵David Heinemeier Hansson2004-12-161-3/+2
| | | | | | webrick server -- requests for stylesheets, images, and the like should be concurrent git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@189 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Needed to update the server root for the new placementDavid Heinemeier Hansson2004-12-161-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@188 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Renamed script/envcon to script/consoleDavid Heinemeier Hansson2004-12-163-7/+7
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@187 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Renamed public/dispatch.servlet to script/server -- it wasn't really ↵David Heinemeier Hansson2004-12-165-9/+7
| | | | | | dispatching anyway as its delegating calls to public/dispatch.rb git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@186 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Renamed breakpointing to breakpointerDavid Heinemeier Hansson2004-12-163-2/+2
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@185 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Shouldnt have removed generators from gemspecDavid Heinemeier Hansson2004-12-161-0/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@180 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@172 ↵David Heinemeier Hansson2004-12-151-0/+0
| | | | 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Moved generate to bin and included it againDavid Heinemeier Hansson2004-12-152-8/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@170 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Removed redundent tests for success and removed the tests for missing ↵David Heinemeier Hansson2004-12-151-30/+0
| | | | | | records that were failing out the gates git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@169 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Generators shouldnt be placed in a new Rails creation by defaultDavid Heinemeier Hansson2004-12-151-2/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@168 5ecf4fe2-1ee6-0310-87b1-e25e094e27de