pboling-sanitize_email 0.3.2 → 1.0.0
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/VERSION.yml +1 -1
- data/init.rb +0 -6
- data/lib/sanitize_email.rb +3 -2
- data/lib/sanitize_email/custom_environments.rb +1 -1
- data/lib/sanitize_email/sanitize_email.rb +1 -1
- data/sanitize_email.gemspec +2 -13
- metadata +2 -2
data/VERSION.yml
CHANGED
data/init.rb
CHANGED
|
@@ -1,7 +1 @@
|
|
|
1
|
-
require File.join(File.dirname(__FILE__), 'lib', "sanitize_email", "custom_environments")
|
|
2
|
-
require File.join(File.dirname(__FILE__), 'lib', "sanitize_email", "sanitize_email")
|
|
3
|
-
|
|
4
|
-
$:.unshift "#{File.dirname(__FILE__)}/lib"
|
|
5
|
-
|
|
6
|
-
require 'action_mailer'
|
|
7
1
|
require 'sanitize_email'
|
data/lib/sanitize_email.rb
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
require
|
|
2
|
-
require
|
|
1
|
+
require 'action_mailer'
|
|
2
|
+
require 'sanitize_email/sanitize_email'
|
|
3
|
+
require 'sanitize_email/custom_environments'
|
|
3
4
|
|
|
4
5
|
ActionMailer::Base.send :include, NinthBit::CustomEnvironments
|
|
5
6
|
ActionMailer::Base.send :include, NinthBit::SanitizeEmail
|
data/sanitize_email.gemspec
CHANGED
|
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.name = %q{sanitize_email}
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
6
6
|
s.extra_rdoc_files = ["README.rdoc"]
|
|
7
|
-
s.version = "0.
|
|
7
|
+
s.version = "1.0.0"
|
|
8
8
|
s.authors = ["Peter Boling", "John Trupiano", "George Anderson"]
|
|
9
|
-
s.date = %q{2009-
|
|
9
|
+
s.date = %q{2009-09-02}
|
|
10
10
|
s.description = %q{allows you to play with your application's email abilities without worrying that emails will get sent to actual live addresses}
|
|
11
11
|
s.email = ['peter.boling@gmail.com', 'jtrupiano@gmail.com', 'george@benevolentcode.com']
|
|
12
12
|
# s.files = FileList['lib/**/*.rb', 'bin/*', '[A-Z]*', 'test/**/*'].to_a
|
|
@@ -30,16 +30,5 @@ Gem::Specification.new do |s|
|
|
|
30
30
|
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
|
|
31
31
|
s.require_paths = ["lib"]
|
|
32
32
|
s.rubyforge_project = %q{johntrupiano}
|
|
33
|
-
s.rubygems_version = %q{1.3.3}
|
|
34
33
|
s.summary = %q{Tool to aid in development, testing, qa, and production troubleshooting of email issues without worrying that emails will get sent to actual live addresses.}
|
|
35
|
-
|
|
36
|
-
if s.respond_to? :specification_version then
|
|
37
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
38
|
-
s.specification_version = 2
|
|
39
|
-
|
|
40
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
41
|
-
else
|
|
42
|
-
end
|
|
43
|
-
else
|
|
44
|
-
end
|
|
45
34
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pboling-sanitize_email
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
@@ -11,7 +11,7 @@ autorequire:
|
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
13
|
|
|
14
|
-
date: 2009-
|
|
14
|
+
date: 2009-09-02 00:00:00 -07:00
|
|
15
15
|
default_executable:
|
|
16
16
|
dependencies: []
|
|
17
17
|
|