simpleemail 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 1.0.2 / 2010-01-15
2
+ A couple minor changes were made.
3
+ * Changes to gem specification.
4
+ * Version can be accessed programmatcally from gem.
5
+
1
6
  === 1.0.1 / 2008-08-25
2
7
  Fixed a small bug where an exception wasn't properly being thrown when the smtp settings' tls option was set to an invalid value.
3
8
  === 1.0.0 / 2008-08-05
@@ -1,10 +1,11 @@
1
- Manifest.txt
2
- LICENSE
3
1
  History.txt
2
+ LICENSE
3
+ Manifest.txt
4
4
  README.txt
5
5
  Rakefile
6
6
  lib/simpleemail.rb
7
7
  lib/simpleemail/action_mailer_ssl.rb
8
8
  lib/simpleemail/email.rb
9
+ lib/simpleemail/version.rb
9
10
  test/emailsettings.rb
10
11
  test/test_simpleemail.rb
data/README.txt CHANGED
@@ -1,6 +1,4 @@
1
- = simpleemail
2
- * Project Page: http://rubyforge.org/projects/simpleemail/
3
- * Documentation: http://simpleemail.rubyforge.org/
1
+ Object
4
2
 
5
3
  == DESCRIPTION:
6
4
 
@@ -149,7 +147,7 @@ distribution.
149
147
 
150
148
  This package is licensed with an MIT license:
151
149
 
152
- Copyright (c) 2008 Designing Patterns
150
+ Copyright (c) 2008-2009 Designing Patterns
153
151
 
154
152
  Permission is hereby granted, free of charge, to any person obtaining
155
153
  a copy of this software and associated documentation files (the
@@ -171,3 +169,4 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
171
169
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
172
170
 
173
171
  == SHARE AND ENJOY!
172
+
data/Rakefile CHANGED
@@ -1,9 +1,14 @@
1
1
  # -*- ruby -*-
2
2
  require 'rubygems'
3
3
  require 'hoe'
4
+ require 'lib/simpleemail/version'
4
5
 
5
- Hoe.new('simpleemail', "1.0.1") do |p|
6
+ PROJECT_NAME = 'simpleemail'
7
+
8
+ Hoe.spec(PROJECT_NAME) do |p|
9
+ p.url = "http://www.rubyforge.org/projects/#{PROJECT_NAME}"
6
10
  p.remote_rdoc_dir = ''
11
+ p.version = SimpleEmail::VERSION::STRING
7
12
  p.developer('DesigningPatterns', 'technical.inquiries@designingpatterns.com')
8
13
 
9
14
  p.extra_deps << ['actionmailer']
@@ -1,2 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'simpleemail/email'
3
+ require 'simpleemail/version'
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ module SimpleEmail #:nodoc:
4
+ module VERSION #:nodoc:
5
+ MAJOR = 1
6
+ MINOR = 0
7
+ TINY = 2
8
+
9
+ STRING = [MAJOR, MINOR, TINY].join('.')
10
+ end
11
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simpleemail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DesigningPatterns
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-25 00:00:00 -04:00
12
+ date: 2010-01-17 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -32,6 +32,26 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: "0"
34
34
  version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: rubyforge
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 2.0.3
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: gemcutter
47
+ type: :development
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 0.3.0
54
+ version:
35
55
  - !ruby/object:Gem::Dependency
36
56
  name: hoe
37
57
  type: :development
@@ -40,9 +60,19 @@ dependencies:
40
60
  requirements:
41
61
  - - ">="
42
62
  - !ruby/object:Gem::Version
43
- version: 1.7.0
63
+ version: 2.5.0
44
64
  version:
45
- description: This package simplifies sending emails outside of the Rails environment. It is a wrapper around the ActionMailer package. Support for smtp over tls is included if you are using Ruby 1.8.7 or above. The API provided is very bare, but can be easily extended. The email configuration is provided through a user-specified configuration file (identical to the ActionMailer configuration in environment.rb in Rails except for the added tls option). This package is most useful in the situation that a user has a number of scripts (outside of the Rails environment) that all send very basic emails (to, from, body, subject).
65
+ description: |-
66
+ This package simplifies sending emails outside of the Rails
67
+ environment. It is a wrapper around the ActionMailer package.
68
+ Support for smtp over tls is included if you are using Ruby 1.8.7 or
69
+ above. The API provided is very bare, but can be easily extended.
70
+ The email configuration is provided through a user-specified
71
+ configuration file (identical to the ActionMailer configuration in
72
+ environment.rb in Rails except for the added tls option). This
73
+ package is most useful in the situation that a user has a number of
74
+ scripts (outside of the Rails environment) that all send very basic
75
+ emails (to, from, body, subject).
46
76
  email:
47
77
  - technical.inquiries@designingpatterns.com
48
78
  executables: []
@@ -50,22 +80,25 @@ executables: []
50
80
  extensions: []
51
81
 
52
82
  extra_rdoc_files:
53
- - Manifest.txt
54
83
  - History.txt
84
+ - Manifest.txt
55
85
  - README.txt
56
86
  files:
57
- - Manifest.txt
58
- - LICENSE
59
87
  - History.txt
88
+ - LICENSE
89
+ - Manifest.txt
60
90
  - README.txt
61
91
  - Rakefile
62
92
  - lib/simpleemail.rb
63
93
  - lib/simpleemail/action_mailer_ssl.rb
64
94
  - lib/simpleemail/email.rb
95
+ - lib/simpleemail/version.rb
65
96
  - test/emailsettings.rb
66
97
  - test/test_simpleemail.rb
67
98
  has_rdoc: true
68
- homepage: "Project Page: http://rubyforge.org/projects/simpleemail/"
99
+ homepage: http://www.rubyforge.org/projects/simpleemail
100
+ licenses: []
101
+
69
102
  post_install_message:
70
103
  rdoc_options:
71
104
  - --main
@@ -87,9 +120,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
120
  requirements: []
88
121
 
89
122
  rubyforge_project: simpleemail
90
- rubygems_version: 1.2.0
123
+ rubygems_version: 1.3.5
91
124
  signing_key:
92
- specification_version: 2
125
+ specification_version: 3
93
126
  summary: This package simplifies sending emails outside of the Rails environment
94
127
  test_files:
95
128
  - test/test_simpleemail.rb