Skip to content

Commit

Permalink
updated to rails 2.3.8, yay
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnflyer committed Jun 15, 2010
1 parent 58ea732 commit be1754d
Show file tree
Hide file tree
Showing 634 changed files with 97,030 additions and 22,450 deletions.
81 changes: 0 additions & 81 deletions vendor/rails/Rakefile

This file was deleted.

18 changes: 18 additions & 0 deletions vendor/rails/actionmailer/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,15 +1,33 @@
*2.3.8 (May 24, 2010)*

* Version bump.


*2.3.7 (May 24, 2010)*

* Version bump.


*2.3.6 (May 23, 2010)*

* Upgrade TMail from 1.2.3 to 1.2.7. [Mikel Lindsaar]


*2.3.5 (November 25, 2009)*

* Minor Bug Fixes and deprecation warnings


*2.3.4 (September 4, 2009)*

* Minor bug fixes.


*2.3.3 (July 12, 2009)*

* No changes, just a version bump.


*2.3.2 [Final] (March 15, 2009)*

* Fixed that ActionMailer should send correctly formatted Return-Path in MAIL FROM for SMTP #1842 [Matt Jones]
Expand Down
2 changes: 1 addition & 1 deletion vendor/rails/actionmailer/MIT-LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2009 David Heinemeier Hansson
Copyright (c) 2004-2010 David Heinemeier Hansson

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion vendor/rails/actionmailer/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 2.3.5' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.8' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion vendor/rails/actionmailer/lib/action_mailer.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#--
# Copyright (c) 2004-2009 David Heinemeier Hansson
# Copyright (c) 2004-2010 David Heinemeier Hansson
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
Expand Down
4 changes: 2 additions & 2 deletions vendor/rails/actionmailer/lib/action_mailer/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def template_root=(root)
end

def template_path
"#{template_root}/#{mailer_name}"
File.join(template_root, mailer_name)
end

def initialize_template_class(assigns)
Expand Down Expand Up @@ -675,7 +675,7 @@ def create_mail
def perform_delivery_smtp(mail)
destinations = mail.destinations
mail.ready_to_send
sender = (mail['return-path'] && mail['return-path'].spec) || mail['from']
sender = (mail['return-path'] && mail['return-path'].spec) || Array(mail.from).first

smtp = Net::SMTP.new(smtp_settings[:address], smtp_settings[:port])
smtp.enable_starttls_auto if smtp_settings[:enable_starttls_auto] && smtp.respond_to?(:enable_starttls_auto)
Expand Down
1 change: 1 addition & 0 deletions vendor/rails/actionmailer/lib/action_mailer/quoting.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# encoding: us-ascii
module ActionMailer
module Quoting #:nodoc:
# Convert the given text into quoted printable format, with an instruction
Expand Down

This file was deleted.

Loading

0 comments on commit be1754d

Please sign in to comment.