Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix ActionMailer test issues | Evan Phoenix | 2010-03-22 | 1 | -2/+4 |
| | | | | | * Don't depend so much no the message in a NameError * Reset the delivery method properly | ||||
* | Improve performance of the rendering stack by freezing formats as a sign ↵ | José Valim | 2010-03-19 | 6 | -52/+43 |
| | | | | that they shouldn't be further modified. | ||||
* | Fix an error in isolated running of tests | Carlhuda | 2010-03-18 | 1 | -8/+0 |
| | |||||
* | Use Array.wrap not Array() | Jeremy Kemper | 2010-03-17 | 2 | -3/+6 |
| | |||||
* | Fix broken test due to constant collision | Jeremy Kemper | 2010-03-17 | 2 | -6/+4 |
| | |||||
* | Kill nonexistent method removal | Jeremy Kemper | 2010-03-17 | 1 | -2/+0 |
| | |||||
* | Remove some 1.9 warnings (resulting in some fixed bugs). Remaining AM ↵ | wycats | 2010-03-17 | 1 | -0/+2 |
| | | | | warnings are in dependencies. | ||||
* | Eliminate warnings for AM on 1.8 | wycats | 2010-03-16 | 3 | -4/+22 |
| | |||||
* | Finish cleaning up rendering stack from views and move assigns evaluation to ↵ | José Valim | 2010-03-12 | 2 | -3/+2 |
| | | | | controller (so plugins and/or controllers can overwrite just one method). | ||||
* | Allow anything that responds to render to be given as :template and use ↵ | José Valim | 2010-03-12 | 2 | -2/+2 |
| | | | | find_template instead of find in views. | ||||
* | Clean up the API required from ActionView::Template. | José Valim | 2010-03-09 | 1 | -1/+1 |
| | |||||
* | Merge master. | José Valim | 2010-03-08 | 3 | -4/+9 |
|\ | |||||
| * | Make many parts of Rails lazy. In order to facilitate this, | wycats | 2010-03-07 | 3 | -4/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook | ||||
* | | Bring AM up to date with new rendering stack. | José Valim | 2010-03-08 | 2 | -8/+6 |
| | | |||||
* | | Move layout lookup to views. | José Valim | 2010-03-08 | 1 | -1/+0 |
| | | |||||
* | | Added template lookup responsible to hold all information used in template ↵ | José Valim | 2010-03-07 | 1 | -1/+0 |
|/ | | | | lookup. | ||||
* | Load RAILS_VERSION relative to the gemspec file. | Stefan Penner | 2010-03-06 | 1 | -1/+1 |
| | |||||
* | Read Rails version from a file instead of modifying the load path and doing ↵ | Bryan Helmkamp | 2010-03-04 | 1 | -4/+3 |
| | | | | | | requires Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Fixed a broken AM test. I'm unsure how this passed before. | Carlhuda | 2010-03-04 | 1 | -1/+1 |
| | |||||
* | Update the ActionMailer tests to run off of the latest ActionController ↵ | Carl Lerche | 2010-03-04 | 2 | -5/+8 |
| | | | | config refactor | ||||
* | Fix a bunch of failing AP / AM specs created from the previous ↵ | Carl Lerche | 2010-03-04 | 1 | -2/+6 |
| | | | | AbstractController configuration refactor. | ||||
* | Fix quoting regexp encoding in ActionMailer | Pavel Golubeff | 2010-03-03 | 1 | -1/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Fix action_mailer tests | Carl Lerche | 2010-03-02 | 1 | -1/+5 |
| | |||||
* | Get the railties tests to pass again. | Carlhuda | 2010-03-02 | 1 | -5/+0 |
| | |||||
* | Moved initializers for ActionMailer and ActionController into their own railties | Carlhuda | 2010-03-02 | 1 | -0/+5 |
| | |||||
* | Wordsmith gem descriptions | Jeremy Kemper | 2010-03-02 | 1 | -2/+2 |
| | |||||
* | Leverage VERSION constants from gemspecs to avoid tedious updates when releasing | Bryan Helmkamp | 2010-03-02 | 2 | -3/+5 |
| | |||||
* | Update versions of all components to normalize them to new format | Bryan Helmkamp | 2010-03-02 | 1 | -2/+3 |
| | |||||
* | Remove cruft in the gem packaging and release code | Bryan Helmkamp | 2010-03-01 | 1 | -10/+0 |
| | |||||
* | fix up actionmailer load path | Joshua Peek | 2010-02-28 | 1 | -1/+4 |
| | |||||
* | Rename named_url_helpers to url_helpers and url_helpers to url_for | Carlhuda | 2010-02-26 | 2 | -2/+2 |
| | |||||
* | Get Railties tests passing | Carlhuda | 2010-02-25 | 1 | -1/+1 |
| | |||||
* | Get ActionMailer's tests passing with the non global router | Carlhuda | 2010-02-25 | 1 | -2/+4 |
| | |||||
* | Renamed LocalizedCache to DetailsCache. | José Valim | 2010-02-24 | 1 | -1/+1 |
| | |||||
* | Use render instead render_to_body. | José Valim | 2010-02-24 | 2 | -2/+2 |
| | |||||
* | Revert "Fix test load paths for those not using bundler" | Carlhuda | 2010-02-23 | 2 | -8/+2 |
| | | | | | | This reverts commit eec2d301d4ce9df9c71c1a5aa63053eb970b6818. This commit broke tests. You cannot have a file called "bundler" on the load path. | ||||
* | Adding options to register observers and interceptors through ↵ | Mikel Lindsaar | 2010-02-22 | 3 | -1/+42 |
| | | | | | | ActionMailer::Base.register_observer and ActionMailer::Base.register_interceptor. These hook into Mail.register_interceptor and Mail.register_observer. Also bumped Mail requirement to 2.1.3 Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Use ActionDispatch::Routing everywhere | Martin Schürrer | 2010-02-21 | 1 | -1/+1 |
| | |||||
* | Allow to choose the template path and template name used in implicit ↵ | José Valim | 2010-02-19 | 2 | -46/+81 |
| | | | | rendering with ActionMailer. | ||||
* | Merge master. | José Valim | 2010-02-17 | 2 | -2/+8 |
|\ | |||||
| * | Fix test load paths for those not using bundler | Joshua Peek | 2010-02-15 | 2 | -2/+8 |
| | | |||||
* | | Rename Rails::Subscriber to Rails::LogSubscriber | Prem Sichanugrist | 2010-02-16 | 3 | -8/+8 |
|/ | |||||
* | Adding ruby version spec to all gemspec files to at least 1.8.7 | Mikel Lindsaar | 2010-02-08 | 1 | -0/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Fixing actionmailer tests for CI | Mikel Lindsaar | 2010-02-06 | 1 | -1/+2 |
| | |||||
* | fix usage examples and more to use new invocations | RomD | 2010-02-06 | 2 | -2/+2 |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | ||||
* | Fix tiny version number from '3.0.0beta' to '3.0.0.beta1', so 'rake install' ↵ | Prem Sichanugrist | 2010-02-06 | 1 | -1/+1 |
| | | | | | | will be run correctly [#3879 status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Bump git versions to 3.0.0.beta1 since we've released | Jeremy Kemper | 2010-02-05 | 1 | -2/+2 |
| | |||||
* | install ActionController::UrlFor before environment is parsed, to provide ↵ | Paul Rosania | 2010-02-05 | 1 | -5/+5 |
| | | | | | | ActionMailer#default_url_options= Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Submarine the rake-gemcutter dep in Rakefiles | Jeremy Kemper | 2010-02-05 | 1 | -4/+5 |
| | |||||
* | Fix task defines | Jeremy Kemper | 2010-02-04 | 1 | -1/+1 |
| |