actionmailer 1.3.2 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionmailer might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,4 +1,9 @@
1
- *1.13.2* (February 5th, 2007)
1
+ *1.3.3* (March 12th, 2007)
2
+
3
+ * Depend on Action Pack 1.13.3
4
+
5
+
6
+ *1.3.2* (February 5th, 2007)
2
7
 
3
8
  * Deprecate server_settings renaming it to smtp_settings, add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Koz]
4
9
 
data/Rakefile CHANGED
@@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
54
54
  s.rubyforge_project = "actionmailer"
55
55
  s.homepage = "http://www.rubyonrails.org"
56
56
 
57
- s.add_dependency('actionpack', '= 1.13.2' + PKG_BUILD)
57
+ s.add_dependency('actionpack', '= 1.13.3' + PKG_BUILD)
58
58
 
59
59
  s.has_rdoc = true
60
60
  s.requirements << 'none'
@@ -85,11 +85,11 @@ end
85
85
 
86
86
  desc "Publish the release files to RubyForge."
87
87
  task :release => [ :package ] do
88
- `rubyforge login`
88
+ require 'rubyforge'
89
89
 
90
- for ext in %w( gem tgz zip )
91
- release_command = "rubyforge add_release #{PKG_NAME} #{PKG_NAME} 'REL #{PKG_VERSION}' pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}"
92
- puts release_command
93
- system(release_command)
94
- end
90
+ packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
91
+
92
+ rubyforge = RubyForge.new
93
+ rubyforge.login
94
+ rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
95
95
  end
@@ -2,7 +2,7 @@ module ActionMailer
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 3
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0
2
+ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: actionmailer
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.3.2
7
- date: 2007-02-05 00:00:00 -06:00
6
+ version: 1.3.3
7
+ date: 2007-03-13 00:00:00 -05:00
8
8
  summary: Service layer for easy email delivery and testing.
9
9
  require_paths:
10
10
  - lib
@@ -140,5 +140,5 @@ dependencies:
140
140
  requirements:
141
141
  - - "="
142
142
  - !ruby/object:Gem::Version
143
- version: 1.13.2
143
+ version: 1.13.3
144
144
  version: