canonical-email 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/.gitignore +3 -0
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/canonical-email.gemspec +61 -0
- metadata +6 -5
data/.gitignore
ADDED
data/Rakefile
CHANGED
|
@@ -7,8 +7,8 @@ begin
|
|
|
7
7
|
gem.name = "canonical-email"
|
|
8
8
|
gem.summary = %Q{Safely and easily rewrite your email destination headers in Ruby}
|
|
9
9
|
gem.description = %Q{canonical-email lets you substitute the To, CC, and/or BCC email destinations with one of many replacements via a simple regular expression.}
|
|
10
|
-
gem.homepage = "http://github.com/centro/canonical
|
|
11
|
-
gem.authors = ['
|
|
10
|
+
gem.homepage = "http://github.com/centro/canonical"
|
|
11
|
+
gem.authors = ['eric.schwartz@centro.net']
|
|
12
12
|
gem.add_development_dependency "actionmailer", ">=2.1.0"
|
|
13
13
|
gem.add_development_dependency "actionpack", ">=2.1.0"
|
|
14
14
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{canonical-email}
|
|
8
|
+
s.version = "1.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["eric.schwartz@centro.net"]
|
|
12
|
+
s.date = %q{2010-03-29}
|
|
13
|
+
s.description = %q{canonical-email lets you substitute the To, CC, and/or BCC email destinations with one of many replacements via a simple regular expression.}
|
|
14
|
+
s.extra_rdoc_files = [
|
|
15
|
+
"README.rdoc"
|
|
16
|
+
]
|
|
17
|
+
s.files = [
|
|
18
|
+
".gitignore",
|
|
19
|
+
"MIT-LICENSE",
|
|
20
|
+
"README.rdoc",
|
|
21
|
+
"Rakefile",
|
|
22
|
+
"VERSION",
|
|
23
|
+
"canonical-email.gemspec",
|
|
24
|
+
"init.rb",
|
|
25
|
+
"install.rb",
|
|
26
|
+
"lib/canonical-email.rb",
|
|
27
|
+
"lib/disallow_sendmail_method.rb",
|
|
28
|
+
"tasks/canonical.rake",
|
|
29
|
+
"test/canonical_test.rb",
|
|
30
|
+
"test/disallow_sendmail_method_test.rb",
|
|
31
|
+
"test/test_helper.rb",
|
|
32
|
+
"uninstall.rb"
|
|
33
|
+
]
|
|
34
|
+
s.homepage = %q{http://github.com/centro/canonical}
|
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
36
|
+
s.require_paths = ["lib"]
|
|
37
|
+
s.rubygems_version = %q{1.3.6}
|
|
38
|
+
s.summary = %q{Safely and easily rewrite your email destination headers in Ruby}
|
|
39
|
+
s.test_files = [
|
|
40
|
+
"test/canonical_test.rb",
|
|
41
|
+
"test/disallow_sendmail_method_test.rb",
|
|
42
|
+
"test/test_helper.rb"
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
if s.respond_to? :specification_version then
|
|
46
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
47
|
+
s.specification_version = 3
|
|
48
|
+
|
|
49
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
50
|
+
s.add_development_dependency(%q<actionmailer>, [">= 2.1.0"])
|
|
51
|
+
s.add_development_dependency(%q<actionpack>, [">= 2.1.0"])
|
|
52
|
+
else
|
|
53
|
+
s.add_dependency(%q<actionmailer>, [">= 2.1.0"])
|
|
54
|
+
s.add_dependency(%q<actionpack>, [">= 2.1.0"])
|
|
55
|
+
end
|
|
56
|
+
else
|
|
57
|
+
s.add_dependency(%q<actionmailer>, [">= 2.1.0"])
|
|
58
|
+
s.add_dependency(%q<actionpack>, [">= 2.1.0"])
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
metadata
CHANGED
|
@@ -5,12 +5,11 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
|
-
-
|
|
13
|
-
- jaknowlden
|
|
12
|
+
- eric.schwartz@centro.net
|
|
14
13
|
autorequire:
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
@@ -55,10 +54,12 @@ extensions: []
|
|
|
55
54
|
extra_rdoc_files:
|
|
56
55
|
- README.rdoc
|
|
57
56
|
files:
|
|
57
|
+
- .gitignore
|
|
58
58
|
- MIT-LICENSE
|
|
59
59
|
- README.rdoc
|
|
60
60
|
- Rakefile
|
|
61
61
|
- VERSION
|
|
62
|
+
- canonical-email.gemspec
|
|
62
63
|
- init.rb
|
|
63
64
|
- install.rb
|
|
64
65
|
- lib/canonical-email.rb
|
|
@@ -69,7 +70,7 @@ files:
|
|
|
69
70
|
- test/test_helper.rb
|
|
70
71
|
- uninstall.rb
|
|
71
72
|
has_rdoc: true
|
|
72
|
-
homepage: http://github.com/centro/canonical
|
|
73
|
+
homepage: http://github.com/centro/canonical
|
|
73
74
|
licenses: []
|
|
74
75
|
|
|
75
76
|
post_install_message:
|