aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/Rakefile
Commit message (Collapse)AuthorAgeFilesLines
* Update actionmailer with new hash syntax.Kirill Nikitin2012-10-071-2/+2
|
* Rakefile executable attributes and shebang lines has been removedRoman V. Babenko2012-05-021-1/+0
|
* Verbose output for tests.Arun Agrawal2012-02-031-0/+1
| | | | | See #3892
* fixes Rake::GemPackageTask deprecation warnings from rake 0.9.0Vijay Dev2011-05-241-2/+2
|
* sorry, the CI cannot lie to us anymore (Part II)Santiago Pastorino2011-01-131-1/+1
|
* Rakefiles are executables, and rake loads rake, not rakefile coderaggi2010-11-251-1/+1
|
* deletes the rdoc task of each component, they are no longer published separatelyXavier Noria2010-08-201-16/+0
|
* Bump up rdoc to 2.5.10Santiago Pastorino2010-08-181-1/+1
|
* APIs for individual components are no longer publishedXavier Noria2010-07-261-6/+0
|
* update Rakefiles for RDoc 2.5Aaron Patterson2010-07-231-4/+4
|
* Makes Rakefile activate rdoc >= 2.5.9Santiago Pastorino2010-07-231-1/+1
| | | | Signed-off-by: Xavier Noria <fxn@hashref.com>
* Add .rdoc extension to README files.José Valim2010-07-211-1/+1
|
* pdoc tasks publishe APIs in api.rubyonrails.orgXavier Noria2010-06-161-1/+1
|
* use RDoc 2.2 to generate the documentation of individual componentsXavier Noria2010-06-161-1/+2
|
* Leverage VERSION constants from gemspecs to avoid tedious updates when releasingBryan Helmkamp2010-03-021-1/+0
|
* Remove cruft in the gem packaging and release codeBryan Helmkamp2010-03-011-10/+0
|
* Submarine the rake-gemcutter dep in RakefilesJeremy Kemper2010-02-051-4/+5
|
* Fix task definesJeremy Kemper2010-02-041-1/+1
|
* Release using gemcutter gem:push tasksJeremy Kemper2010-02-041-18/+5
|
* Move old tests to a specific folder and add some delivery method tests.José Valim and Mikel Lindsaar2010-01-241-2/+2
|
* Hush AM test suiteJoshua Peek2009-12-161-1/+0
|
* Unify test:isolated across components and run by default at toplevelJeremy Kemper2009-11-101-5/+7
|
* Enable warnings for mailer testsJoshua Peek2009-11-091-1/+1
|
* abstract all of the ActionMailer delivery methods into their own classes. ↵Matthew Rudy Jacobs2009-11-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | 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>
* We won't be publishing tars and zips anymoreJoshua Peek2009-10-161-4/+2
|
* Make gemspecs the authoritative source instead of generating them from the ↵Joshua Peek2009-09-251-31/+1
| | | | Rakefile
* Add rake gemspec and gemspecs to the repoYehuda Katz2009-08-311-0/+5
|
* Bump up the version to 3.0.preCarl Lerche2009-06-301-1/+1
|
* Lazier Rakefile requires to avoid needing full rake gem on 1.9Jeremy Kemper2009-06-081-1/+2
|
* Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+6
|
* Prepare for final 2.3 releaseDavid Heinemeier Hansson2009-03-151-1/+1
|
* Prep for RC2 later todayDavid Heinemeier Hansson2009-02-271-1/+1
|
* Assume that the next version is going to be 2.3 for nowDavid Heinemeier Hansson2008-11-191-1/+1
|
* A few more dependency updatesDavid Heinemeier Hansson2008-11-141-1/+1
|
* Proper update call for gem serverDavid Heinemeier Hansson2008-10-231-1/+1
|
* Push to new gem serverDavid Heinemeier Hansson2008-10-231-2/+2
|
* Prepare for Rails 2.2.0 [RC1]David Heinemeier Hansson2008-10-231-1/+1
|
* Fix file permissionsTarmo Tänav2008-07-311-0/+0
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Horo rdoc templateJeremy Kemper2008-06-221-1/+2
|
* Update Rakefiles to connect to wrath as current user. Use ssh config to set ↵Jeremy Kemper2008-06-181-2/+2
| | | | a different user.
* Making ready for release of 2.1David Heinemeier Hansson2008-05-311-1/+1
|
* Making ready for RC1 releaseDavid Heinemeier Hansson2008-05-111-1/+1
|
* sshpublisher needs to be explicitly required now, apparentlyDavid Heinemeier Hansson2008-03-181-0/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9054 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Move rake contrib require to taskJeremy Kemper2008-01-191-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8665 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Prepare for 2.0.2 releaseDavid Heinemeier Hansson2007-12-161-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8419 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Make ready for 2.0.1David Heinemeier Hansson2007-12-071-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8330 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Preparing for release shortlyDavid Heinemeier Hansson2007-12-061-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8321 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8301 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Prep for RC2David Heinemeier Hansson2007-11-291-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8233 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Prepare versions for RC1David Heinemeier Hansson2007-11-091-1/+1
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8121 5ecf4fe2-1ee6-0310-87b1-e25e094e27de