kurotoshiro-simpleMailer 0.1.4 → 0.1.5
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/Rakefile +1 -0
- data/VERSION +1 -1
- data/simpleMailer.gemspec +9 -7
- metadata +15 -5
data/Rakefile
CHANGED
|
@@ -10,6 +10,7 @@ begin
|
|
|
10
10
|
gem.email = "kurotoshiro@gmail.com"
|
|
11
11
|
gem.homepage = "http://github.com/Kurotoshiro/simpleMailer"
|
|
12
12
|
gem.authors = ["Yoann LE TOUCHE"]
|
|
13
|
+
gem.add_dependency "shared-mime-info"
|
|
13
14
|
gem.add_development_dependency "thoughtbot-shoulda"
|
|
14
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
16
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.5
|
data/simpleMailer.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{simpleMailer}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Yoann LE TOUCHE"]
|
|
12
|
-
s.date = %q{2009-08-
|
|
12
|
+
s.date = %q{2009-08-18}
|
|
13
13
|
s.description = %q{SimpleMailer is a simple wrapper for net::smtp that let you attach files}
|
|
14
14
|
s.email = %q{kurotoshiro@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -28,27 +28,29 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
"test/simpleMailer_test.rb",
|
|
29
29
|
"test/test_helper.rb"
|
|
30
30
|
]
|
|
31
|
-
s.has_rdoc = true
|
|
32
31
|
s.homepage = %q{http://github.com/Kurotoshiro/simpleMailer}
|
|
33
32
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
33
|
s.require_paths = ["lib"]
|
|
35
|
-
s.rubygems_version = %q{1.3.
|
|
34
|
+
s.rubygems_version = %q{1.3.4}
|
|
36
35
|
s.summary = %q{A simple mailer gem}
|
|
37
36
|
s.test_files = [
|
|
38
|
-
"test/
|
|
39
|
-
"test/
|
|
37
|
+
"test/simpleMailer_test.rb",
|
|
38
|
+
"test/test_helper.rb"
|
|
40
39
|
]
|
|
41
40
|
|
|
42
41
|
if s.respond_to? :specification_version then
|
|
43
42
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
|
-
s.specification_version =
|
|
43
|
+
s.specification_version = 3
|
|
45
44
|
|
|
46
45
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
46
|
+
s.add_runtime_dependency(%q<shared-mime-info>, [">= 0"])
|
|
47
47
|
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
48
48
|
else
|
|
49
|
+
s.add_dependency(%q<shared-mime-info>, [">= 0"])
|
|
49
50
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
50
51
|
end
|
|
51
52
|
else
|
|
53
|
+
s.add_dependency(%q<shared-mime-info>, [">= 0"])
|
|
52
54
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
53
55
|
end
|
|
54
56
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kurotoshiro-simpleMailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yoann LE TOUCHE
|
|
@@ -9,9 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-08-
|
|
12
|
+
date: 2009-08-18 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: shared-mime-info
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
15
25
|
- !ruby/object:Gem::Dependency
|
|
16
26
|
name: thoughtbot-shoulda
|
|
17
27
|
type: :development
|
|
@@ -42,7 +52,7 @@ files:
|
|
|
42
52
|
- simpleMailer.gemspec
|
|
43
53
|
- test/simpleMailer_test.rb
|
|
44
54
|
- test/test_helper.rb
|
|
45
|
-
has_rdoc:
|
|
55
|
+
has_rdoc: false
|
|
46
56
|
homepage: http://github.com/Kurotoshiro/simpleMailer
|
|
47
57
|
licenses:
|
|
48
58
|
post_install_message:
|
|
@@ -67,8 +77,8 @@ requirements: []
|
|
|
67
77
|
rubyforge_project:
|
|
68
78
|
rubygems_version: 1.3.5
|
|
69
79
|
signing_key:
|
|
70
|
-
specification_version:
|
|
80
|
+
specification_version: 3
|
|
71
81
|
summary: A simple mailer gem
|
|
72
82
|
test_files:
|
|
73
|
-
- test/test_helper.rb
|
|
74
83
|
- test/simpleMailer_test.rb
|
|
84
|
+
- test/test_helper.rb
|