| Commit message (Expand) | Author | Age | Files | Lines |
* | Stop adding the antiquated test/mocks/* directories and only add them to the ... | David Heinemeier Hansson | 2008-03-27 | 3 | -3/+6 |
* | Added that gems can now be plugins if they include rails/init.rb (closes #114... | David Heinemeier Hansson | 2008-03-27 | 5 | -2/+67 |
* | Missing test data | David Heinemeier Hansson | 2008-03-27 | 4 | -0/+5 |
* | Fixed that a return-path header would be ignored (closes #7572) [joost] | David Heinemeier Hansson | 2008-03-27 | 2 | -2/+10 |
* | Added Plugin#about method to programmatically access the about.yml in a plugi... | David Heinemeier Hansson | 2008-03-27 | 4 | -17/+52 |
* | New applications should use UTC as the default time zone | David Heinemeier Hansson | 2008-03-26 | 2 | -11/+11 |
* | Fix issue where the :uniq option of a has_many :through association is ignore... | Rick Olson | 2008-03-26 | 3 | -5/+13 |
* | Fix duplicate table alias error when including an association with a has_many... | Rick Olson | 2008-03-26 | 3 | -26/+35 |
* | More efficient association preloading code that compacts a through_records ar... | Rick Olson | 2008-03-26 | 2 | -8/+13 |
* | Improve documentation. | Pratik Naik | 2008-03-26 | 45 | -173/+468 |
* | Typo fix in documentation from [9090] References #11422 | Michael Koziarski | 2008-03-26 | 1 | -1/+1 |
* | Standardise the implementation of the extensions to BigDecimal. Closes #1060... | Michael Koziarski | 2008-03-26 | 2 | -23/+39 |
* | Fixed that ActiveRecord#Base.find_or_create/initialize would not honor attr_p... | David Heinemeier Hansson | 2008-03-25 | 3 | -4/+46 |
* | Whitespace + formatting | Jeremy Kemper | 2008-03-25 | 2 | -16/+11 |
* | Fixed that FormHelper#radio_button would produce invalid ids (closes #11298) ... | David Heinemeier Hansson | 2008-03-24 | 3 | -2/+7 |
* | Added :confirm option to submit_tag (closes #11415) [miloops] | David Heinemeier Hansson | 2008-03-24 | 3 | -3/+20 |
* | Fixed NumberHelper#number_with_precision to properly round in a way that work... | David Heinemeier Hansson | 2008-03-24 | 3 | -3/+7 |
* | Added ActiveRecord#Base.all/first/last as aliases for find(:all/:first/:last)... | David Heinemeier Hansson | 2008-03-24 | 4 | -2/+28 |
* | Merge the has_finder gem, renamed as 'named_scope'. Closes #11404 [nkallen] | Rick Olson | 2008-03-24 | 20 | -39/+369 |
* | Allow the #simple_format text_helper to take an html_options hash for each pa... | Rick Olson | 2008-03-24 | 3 | -5/+18 |
* | Fix merging blank conditions. Closes #10764 [mcmire, cavalle] | Jeremy Kemper | 2008-03-23 | 2 | -10/+43 |
* | Ensure that TimeWithZone#to_yaml works when passed a YAML::Emitter. [rick] | Rick Olson | 2008-03-23 | 3 | -1/+13 |
* | Fix regression from filter refactoring where re-adding a skipped filter resul... | Rick Olson | 2008-03-23 | 3 | -0/+38 |
* | Ensure correct TimeWithZone#to_date | Geoff Buesing | 2008-03-22 | 3 | -1/+16 |
* | Correct grammar in config.time_zone description in environment.rb | Geoff Buesing | 2008-03-22 | 1 | -1/+1 |
* | Use the more modern error_messages from the form object rather than error_mes... | David Heinemeier Hansson | 2008-03-22 | 2 | -6/+6 |
* | Added config.time_zone = 'UTC' as a commented-out option in the default envir... | Geoff Buesing | 2008-03-22 | 2 | -2/+6 |
* | has_one :through supports :source_type. Fix up some tests. References #4756. | Jeremy Kemper | 2008-03-22 | 5 | -9/+32 |
* | Adding rake tasks time:zones:all, time:zones:us and time:zones:local for find... | Geoff Buesing | 2008-03-22 | 2 | -0/+45 |
* | Fix schema.rb some more. sponsors.sponsorable_type should be a string. Refere... | Jeremy Kemper | 2008-03-21 | 1 | -1/+1 |
* | Fix schema.rb. Please to be testing on more than just MySQL! References #9067. | Jeremy Kemper | 2008-03-21 | 1 | -24/+24 |
* | Make TimeWithZone work with tzinfo 0.2.x: use TZInfo::Timezone#zone_identifie... | Geoff Buesing | 2008-03-21 | 6 | -174/+243 |
* | Fix an edge case with extra periods in Routing.normalize_paths. Closes #11337... | Jeremy Kemper | 2008-03-21 | 2 | -6/+6 |
* | Allow association scoping for built/created records if :conditions is specifi... | Rick Olson | 2008-03-21 | 4 | -3/+36 |
* | Add has_one :through support, finally. Closes #4756 [thechrisoshow] | Rick Olson | 2008-03-21 | 15 | -22/+245 |
* | Missed adds. References #10350. | Jeremy Kemper | 2008-03-20 | 4 | -0/+4 |
* | Re-added ActionView::Helpers::register_javascript/stylesheet_expansion to mak... | Jeremy Kemper | 2008-03-20 | 4 | -21/+108 |
* | Docfixes (closes #11356, #11172, #10523) | David Heinemeier Hansson | 2008-03-20 | 4 | -1/+32 |
* | Revert [9106]. References #10350. | Jeremy Kemper | 2008-03-19 | 3 | -85/+21 |
* | assert_response, don't cry if @exception isn't available in the template | Jeremy Kemper | 2008-03-18 | 1 | -1/+3 |
* | Migrations: create_table supports primary_key_prefix_type. Closes #10314. | Jeremy Kemper | 2008-03-18 | 4 | -4/+38 |
* | Refactor filters to use Active Support callbacks. Closes #11235. | Jeremy Kemper | 2008-03-18 | 8 | -449/+383 |
* | sshpublisher needs to be explicitly required now, apparently | David Heinemeier Hansson | 2008-03-18 | 5 | -0/+7 |
* | Fixed that polymorphic routes would modify the input array (closes #11363) [t... | David Heinemeier Hansson | 2008-03-17 | 3 | -0/+13 |
* | Added :format option to NumberHelper#number_to_currency to enable better loca... | David Heinemeier Hansson | 2008-03-17 | 3 | -1/+11 |
* | Only log if theres a logger | David Heinemeier Hansson | 2008-03-17 | 1 | -1/+3 |
* | Added logging for dependency load errors with fixtures (closes #11056) [stuth... | David Heinemeier Hansson | 2008-03-17 | 3 | -5/+27 |
* | Added support for installing plugins hosted at git repositories (closes #1129... | David Heinemeier Hansson | 2008-03-17 | 2 | -1/+27 |
* | Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing... | Geoff Buesing | 2008-03-17 | 7 | -54/+50 |
* | TZInfo caches Timezone instances in its own internal hash cache, so TimeZone:... | Geoff Buesing | 2008-03-17 | 2 | -7/+3 |