Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' of git@github.com:rails/rails | rick | 2008-04-23 | 146 | -3858/+1696 |
|\ | |||||
| * | Fixes a subtle bug when using symbols for key definitions in habtm associations | David Dollar | 2008-04-23 | 2 | -3/+32 |
| | | |||||
| * | preventing generated documentation from being picked up by git. [#37 ↵ | Sam Granieri | 2008-04-23 | 1 | -1/+7 |
| | | | | | | | | | | | | state:resolved] Signed-off-by: Michael Koziarski <michael@koziarski.com> | ||||
| * | Make sure member names aren't mistakenly set to nil when providing :path_names | Eugene Pimenov | 2008-04-23 | 2 | -8/+39 |
| | | | | | | | | | | | | [#19 state:resolved] Signed-off-by: Michael Koziarski <michael@koziarski.com> | ||||
| * | Fix include? on has_many collections with finder_sql to fall back to Array ↵ | Joshua Bates | 2008-04-23 | 2 | -0/+12 |
| | | | | | | | | | | | | include? rather than try to use SQL. [#18 state:resolved] | ||||
| * | Provide data for the key column otherwise adding a unique index will fail. ↵ | Frederick Cheung | 2008-04-23 | 1 | -0/+1 |
| | | | | | | | | [#30 state:closed] | ||||
| * | Rails Edge info returns the latest git commit hash [#36 state:resolved] | Francesc Esplugas | 2008-04-22 | 3 | -43/+39 |
| | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Use schema.rb for all databases | Frederick Cheung | 2008-04-22 | 43 | -2928/+432 |
| | | | | | | | | | | | | Move adapter specific schema into their own files Signed-off-by: Michael Koziarski <michael@koziarski.com> | ||||
| * | Fallback to Ruby's pseudo random number generator if the system does not ↵ | Joshua Peek | 2008-04-21 | 1 | -1/+6 |
| | | | | | | | | have SHA512 installed. | ||||
| * | Don't require generator_test_helper in RailsGeneratorTest. | Joshua Peek | 2008-04-21 | 1 | -3/+12 |
| | | |||||
| * | Add .empty files to empty directories so git preserves them. | Joshua Peek | 2008-04-21 | 6 | -0/+0 |
| | | |||||
| * | Rescue from Timeout::Error in ActiveResource::Connection. | Cheah Chu Yeow | 2008-04-22 | 3 | -1/+32 |
| | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> | ||||
| * | Introduce ActiveResource::Base.timeout. This allows a timeout to be set on ↵ | Cheah Chu Yeow | 2008-04-22 | 4 | -4/+117 |
| | | | | | | | | | | | | the internal Net::HTTP instance ARes uses (default is 60 seconds). Setting a low timeout allows ARes clients to fail-fast in the event of a unresponsive/crashed server, rather than cause cascading failures in your application. Signed-off-by: Michael Koziarski <michael@koziarski.com> | ||||
| * | * Remove default_url_options from mailer generator | Cody Fauser | 2008-04-21 | 3 | -17/+30 |
| | | | | | | | | | | | | * Improve mailer documentation regarding generating URLs * Add no_match to mailer generator to warn contributors about default_url_options Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Add back empty plugin folders that were lost when we moved to git. | Joshua Peek | 2008-04-21 | 4 | -32/+32 |
| | | |||||
| * | Revert "Update plugin loading tests to reflect changes in plugin fixtures." | Joshua Peek | 2008-04-21 | 3 | -79/+86 |
| | | | | | | | | This reverts commit eef9002968609a0d8d4a8006aebcd6f18f993f4a. | ||||
| * | Update plugin loading tests to reflect changes in plugin fixtures. | Joshua Peek | 2008-04-21 | 3 | -86/+79 |
| | | |||||
| * | Gem dependencies don't require a version. Also fixed up failing gem ↵ | Joshua Peek | 2008-04-21 | 2 | -3/+5 |
| | | | | | | | | dependency tests. | ||||
| * | Mock RailsFCGIHandler and Dispatcher to stop mocha deprecation warnings. | Joshua Peek | 2008-04-21 | 1 | -6/+24 |
| | | |||||
| * | Alias Object#instance_variable_names to Object#instance_variables for Ruby 1.8.x | Pratik Naik | 2008-04-21 | 1 | -2/+6 |
| | | |||||
| * | Delegate ivars to controller instead of copying | Pratik Naik | 2008-04-21 | 4 | -10/+23 |
| | | | | | | | | | | Reduce number of instance variables being copied from controller to view. Instead, delegate them to controller instance. | ||||
| * | select_datetime and select_time default to Time.zone.now when ↵ | gbuesing | 2008-04-21 | 3 | -2/+22 |
| | | | | | | | | config.time_zone is set | ||||
| * | datetime_select defaults to Time.zone.now when config.time_zone is set | gbuesing | 2008-04-21 | 3 | -1/+39 |
| | | |||||
| * | Use the rails user when creating and dropping the database rather than ↵ | Steven Soroka | 2008-04-21 | 1 | -6/+6 |
| | | | | | | | | | | | | falling back to the currently logged in user who may or may not have CREATE / DROP privileges and no password. Closes #11564 (trac) | ||||
| * | Merge branch 'master' of git@github.com:rails/rails | gbuesing | 2008-04-20 | 9 | -71/+40 |
| |\ | |||||
| | * | Ruby 1.8.7 compat: detect and alias non-superclass DateTime#to_s | Jeremy Kemper | 2008-04-20 | 1 | -4/+9 |
| | | | |||||
| | * | Ruby 1.8.7 compat: override unordered Enumerable#group_by | Jeremy Kemper | 2008-04-20 | 1 | -1/+4 |
| | | | |||||
| | * | Ruby 1.8.7 compat: String#start_with? and #end_with? | Jeremy Kemper | 2008-04-20 | 3 | -14/+19 |
| | | | |||||
| | * | Remove ActionController::Base#view_controller_internals | Pratik Naik | 2008-04-21 | 4 | -45/+8 |
| | | | | | | | | | | | | | | | | | | Get rid of ActionController::Base#view_controller_internals flag and use @@protected_view_variables for storing the list of controller specific instance variables which should be inaccessible inside views. | ||||
| | * | Remove ActionController::Base#add_class_variables_to_assigns | Pratik Naik | 2008-04-21 | 1 | -7/+0 |
| | | | |||||
| * | | Duration #since and #ago with no argument (e.g., 5.days.ago) return ↵ | gbuesing | 2008-04-20 | 5 | -3/+76 |
| |/ | | | | | | | TimeWithZone when config.time_zone is set. Introducing Time.current, which returns Time.zone.now if config.time_zone is set, otherwise just returns Time.now | ||||
| * | Merge commit 'rails/master' | Jeremy Kemper | 2008-04-20 | 2 | -2/+2 |
| |\ | |||||
| | * | Avoid adding two DISTINCT statements to queries in sqlite 2. | Frederick Cheung | 2008-04-21 | 1 | -1/+1 |
| | | | |||||
| | * | Fix sqlite adapter to work with the quoted table names returned by later ↵ | Frederick Cheung | 2008-04-21 | 1 | -1/+1 |
| | | | | | | | | | | | | versions of sqlite3. | ||||
| * | | Use append_features instead of included to get the inclusion order right | Jeremy Kemper | 2008-04-20 | 1 | -1/+2 |
| |/ | |||||
| * | Merge commit 'rails/master' | Jeremy Kemper | 2008-04-20 | 72 | -762/+830 |
| |\ | |||||
| | * | Use define_callbacks helper for ActiveRecord validations. | Joshua Peek | 2008-04-20 | 4 | -57/+25 |
| | | | |||||
| | * | Add conditional options to caches_page method [#25 state:resolved] | Paul Horsfall | 2008-04-19 | 3 | -3/+20 |
| | | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| | * | Remove unused ignore_missing_templates option | Pratik Naik | 2008-04-19 | 2 | -5/+1 |
| | | | |||||
| | * | Introduce ActionView::TestCase for testing view helpers. | Joshua Peek | 2008-04-19 | 21 | -131/+190 |
| | | | |||||
| | * | Move missing template logic to ActionView | Pratik Naik | 2008-04-19 | 13 | -31/+25 |
| | | | |||||
| | * | Introduce ActionView::InlineTemplate class | Pratik Naik | 2008-04-19 | 7 | -18/+37 |
| | | | |||||
| | * | Add example for default_url_options[:host] to generated mailers. | Mislav Marohnić | 2008-04-18 | 2 | -2/+9 |
| | | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| | * | Merge branch 'master' of git@github.com:josh/rails | Joshua Peek | 2008-04-18 | 1 | -6/+5 |
| | |\ | |||||
| | | * | Slight optimization to CallbackChain#union and delete. | Joshua Peek | 2008-04-18 | 1 | -6/+5 |
| | | | | |||||
| | * | | Changed mailer generator to not use instance variables. | Mislav Marohnić | 2008-04-18 | 2 | -12/+12 |
| | | | | | | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| | * | | Cleanup generator tests by extracting repeated code into ↵ | Mislav Marohnić | 2008-04-18 | 6 | -364/+227 |
| | |/ | | | | | | | | | | | | | | | | generator_test_helper. Add test for mailer generator. Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| | * | Refactor Dispatcher callbacks to remove unnecessary Dependencies checks in ↵ | Pratik Naik | 2008-04-18 | 5 | -89/+73 |
| | | | | | | | | | | | | production environment. | ||||
| | * | Tidy up ActiveSupport::Callbacks::CallbackChain instance API. | Joshua Peek | 2008-04-17 | 6 | -16/+54 |
| | | | |||||
| * | | Incompatible Symbol#to_proc was reverted upstream | Jeremy Kemper | 2008-04-20 | 1 | -7/+0 |
| | | |