simpleemail 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,5 @@
1
+ === 1.0.1 / 2008-08-25
2
+ Fixed a small bug where an exception wasn't properly being thrown when the smtp settings' tls option was set to an invalid value.
1
3
  === 1.0.0 / 2008-08-05
2
- Initial release of SimpleEmail.
4
+ Initial release of Simple Email.
3
5
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@
2
2
  require 'rubygems'
3
3
  require 'hoe'
4
4
 
5
- Hoe.new('simpleemail', "1.0.0") do |p|
5
+ Hoe.new('simpleemail', "1.0.1") do |p|
6
6
  p.remote_rdoc_dir = ''
7
7
  p.developer('DesigningPatterns', 'technical.inquiries@designingpatterns.com')
8
8
 
@@ -40,7 +40,7 @@ module ActionMailer #:nodoc:
40
40
  end
41
41
  when :never
42
42
  else
43
- raise Exception "Unexpected value for smtp setting (tls): Available values: (:always, :auto, :never)"
43
+ raise StandardError, "Unexpected value for smtp setting (tls): Available values: (:always, :auto, :never)"
44
44
  end
45
45
 
46
46
  begin
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.0
4
+ version: 1.0.1
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-05 00:00:00 -04:00
12
+ date: 2008-08-25 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency