Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Improve Gemfile commentary | Jeremy Kemper | 2009-11-03 | 1 | -9/+6 | |
| | | ||||||
| * | Remove --freeze (since Rails will come bundled in all new apps) and update ↵ | José Valim | 2009-11-03 | 6 | -58/+76 | |
| | | | | | | | | | | | | gem action to change Gemfile instead of config.environment. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
| * | Ensure ActiveRecord is loaded on revoke/destroy. | José Valim | 2009-11-03 | 1 | -0/+1 | |
| | | | | | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
| * | Avoid duplicated names on help description and show proper error message if ↵ | José Valim | 2009-11-03 | 3 | -16/+49 | |
| | | | | | | | | | | | | trying to load a Rails 2.x generator. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
| * | Fix simple resource named routes for new routing dsl | Joshua Peek | 2009-11-03 | 2 | -14/+39 | |
| | | ||||||
| * | Use spoofed version bump to ensure git is preferred | Jeremy Kemper | 2009-11-03 | 1 | -0/+1 | |
| | | ||||||
| * | Force gemcutter source to ensure a consistent arel version | Jeremy Kemper | 2009-11-02 | 1 | -2/+2 | |
| | | ||||||
| * | Work around rebundling issue | Jeremy Kemper | 2009-11-02 | 1 | -3/+1 | |
| | | ||||||
| * | Ensure that generators can be invoked from any directory. | José Valim | 2009-11-02 | 3 | -6/+28 | |
| | | | | | | | | Signed-off-by: Engine Yard <engineyard@Engine-Yards-MacBook-Pro.local> | |||||
| * | Fix chars.reverse for multibyte decomposed strings | Matias Flores | 2009-11-02 | 2 | -1/+12 | |
| | | | | | | | | | | | | [#597 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
| * | Arel::In -> Arel::Predicates::In | Jeremy Kemper | 2009-11-02 | 3 | -3/+3 | |
| | | ||||||
| * | Clarify date/time dependencies | Jeremy Kemper | 2009-11-02 | 6 | -6/+7 | |
| | | ||||||
| * | Consolidate Object#to_param and #to_query core extensions | Jeremy Kemper | 2009-11-02 | 18 | -144/+141 | |
| | | ||||||
| * | Ruby 1.9.2: rational.rb is deprecated | Jeremy Kemper | 2009-11-02 | 1 | -1/+1 | |
| | | ||||||
| * | Ruby 1.9.2: URI.escape is obsolete | Jeremy Kemper | 2009-11-02 | 2 | -3/+8 | |
| | | ||||||
| * | Ruby 1.9 doesn't recognize EM SPACE as whitespace, breaking String#strip | Jeremy Kemper | 2009-11-02 | 1 | -1/+7 | |
| | | ||||||
| * | Give useful test:isolated failures | Jeremy Kemper | 2009-11-02 | 1 | -2/+2 | |
| | | ||||||
* | | Merge branch 'master' of git://github.com/rails/rails | José Valim | 2009-11-02 | 447 | -7603/+6360 | |
|\| | ||||||
| * | CI breakage | Yehuda Katz | 2009-11-02 | 20 | -44/+23 | |
| | | | | | | | | This reverts commit a288b74f1c75c6f100de7611a5093a421f1ad6d1. | |||||
| * | Extracted localized_cache.rb from ActionController, added it to ↵ | José Valim | 2009-11-01 | 6 | -40/+113 | |
| | | | | | | | | AbstractController and made ActionMailer use it. | |||||
| * | Allow :instance_reader to be given to superclass_delegating_accessor as well. | José Valim | 2009-11-01 | 2 | -21/+46 | |
| | | ||||||
| * | Use I18n on ActionMailer subjects by default. | José Valim | 2009-11-01 | 2 | -3/+22 | |
| | | ||||||
| * | More refactoring on ActionMailer::Base. | José Valim | 2009-11-01 | 1 | -20/+23 | |
| | | ||||||
| * | Make tests run without deprecation warning (just one left). | José Valim | 2009-11-01 | 6 | -79/+110 | |
| | | ||||||
| * | Another refactoring on AM. body is deprecated, use render instead. | José Valim | 2009-11-01 | 4 | -115/+90 | |
| | | ||||||
| * | Add some basic render_test to AbstractController. | José Valim | 2009-11-01 | 5 | -13/+98 | |
| | | ||||||
| * | Improve AbstractController layouts coverage. | José Valim | 2009-11-01 | 4 | -17/+53 | |
| | | ||||||
| * | Move some of helper tests to AbstractController. | José Valim | 2009-11-01 | 2 | -49/+50 | |
| | | ||||||
| * | Move all render and layout pieces required in ActionMailer from ↵ | José Valim | 2009-11-01 | 7 | -134/+115 | |
| | | | | | | | | ActionController to AbstractController. | |||||
| * | Remove ActionMailer helpers and rely on AbstractController one. | José Valim | 2009-11-01 | 7 | -211/+96 | |
| | | ||||||
| * | Refactor ActionMailer layout and remove legacy one. | José Valim | 2009-11-01 | 9 | -303/+51 | |
| | | ||||||
| * | abstract all of the ActionMailer delivery methods into their own classes. ↵ | Matthew Rudy Jacobs | 2009-11-01 | 11 | -68/+193 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | thereby the following are equivalent ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.delivery_method = ActionMailer::DeliveryMethod::Smtp we could equally set our own custom object as long as it provides the instance method :perform_delivery(mail) eg. class MySmsDeliveryMethod def perform_delivery(mail) Sms.send(mail['to'], mail['body']) end end MySmsMailer.delivery_method = MySmsDeliveryMethod.new Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
| * | Remove the random line at the beginning of every new log file | Tim Carey-Smith | 2009-10-29 | 1 | -1/+0 | |
| | | ||||||
| * | Caching refactoring | Yehuda Katz | 2009-10-29 | 6 | -93/+98 | |
| | | ||||||
| * | Generators should use Rails.root instead of Dir.pwd [#3408 status:resolved] | José Valim | 2009-10-28 | 20 | -23/+44 | |
| | | | | | | | | Signed-off-by: Yehuda Katz <wycats@gmail.com> | |||||
| * | First pass at cleaning up action caching | Yehuda Katz | 2009-10-28 | 4 | -105/+102 | |
| | | ||||||
| * | Make polymorphic_url work with symbols again and refactor it [#1384 ↵ | José Valim | 2009-10-28 | 2 | -42/+13 | |
| | | | | | | | | | | | | status:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
| * | Array.wrap(struct) needs to return the wrapped struct | Yehuda Katz | 2009-10-28 | 1 | -12/+7 | |
| | | ||||||
| * | Change Event#thread_id to #transaction_id. Defaults to one "transaction" per ↵ | Yehuda Katz | 2009-10-28 | 2 | -13/+32 | |
| | | | | | | | | thread but you can explicitly declare the start of a new one. This makes it possible for each request to have it own id. | |||||
| * | Make it possible to have IDs per request | Yehuda Katz | 2009-10-28 | 1 | -2/+18 | |
| | | ||||||
| * | New semantics eliminate the need for __send__ | Yehuda Katz | 2009-10-28 | 1 | -2/+2 | |
| | | ||||||
| * | This is all that's needed in 1.8.7+ | Yehuda Katz | 2009-10-28 | 1 | -10/+11 | |
| | | ||||||
| * | Reduce TextTemplate cost for simple cases | Yehuda Katz | 2009-10-28 | 2 | -1/+4 | |
| | | ||||||
| * | Reorganize CSRF a bit | Yehuda Katz | 2009-10-28 | 2 | -33/+27 | |
| | | ||||||
| * | AS::Notifications.subscribe blocks are now yielded the arguments to pass to ↵ | Yehuda Katz | 2009-10-27 | 3 | -6/+18 | |
| | | | | | | | | AS::Notifications::Event.new | |||||
| * | Edinburgh TimeZone references "Europe/London" instead of "Europe/Dublin" ↵ | Phil Ross | 2009-10-27 | 2 | -1/+3 | |
| | | | | | | | | [#3310 state:resolved] | |||||
| * | Bundle Tzinfo 0.3.15 | Geoff Buesing | 2009-10-27 | 142 | -296/+300 | |
| | | ||||||
| * | Tzinfo bundling task: unpack tzinfo with lib directory preserved | Geoff Buesing | 2009-10-27 | 1 | -6/+6 | |
| | | ||||||
| * | Tests pass again | Yehuda Katz | 2009-10-27 | 3 | -14/+14 | |
| | | ||||||
| * | Some more generation tests | Joshua Peek | 2009-10-27 | 1 | -1/+4 | |
| | |