email_override 0.1.3

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 ADDED
@@ -0,0 +1,4 @@
1
+ .DS_Store
2
+ pkg
3
+ rdoc
4
+ test/*.db
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Steve Richert
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,13 @@
1
+ = email_override
2
+
3
+ == Installation
4
+
5
+ script/plugin install git://github.com/laserlemon/email_override.git
6
+
7
+ == Example
8
+
9
+ Coming soon...
10
+
11
+ == Tips
12
+
13
+ Coming soon...
data/Rakefile ADDED
@@ -0,0 +1,38 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'rake/testtask'
4
+ require 'rake/rdoctask'
5
+
6
+ begin
7
+ require 'jeweler'
8
+ Jeweler::Tasks.new do |g|
9
+ g.name = 'email_override'
10
+ g.summary = %(Intercept ActionMailer email deliveries in non-production environments)
11
+ g.description = %(Intercept ActionMailer email deliveries in non-production environments)
12
+ g.email = 'steve@laserlemon.com'
13
+ g.homepage = 'http://github.com/laserlemon/email_override'
14
+ g.authors = %w(laserlemon)
15
+ g.rubyforge_project = 'laser-lemon'
16
+ end
17
+ Jeweler::RubyforgeTasks.new do |r|
18
+ r.doc_task = 'rdoc'
19
+ end
20
+ Jeweler::GemcutterTasks.new
21
+ rescue LoadError
22
+ puts 'Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com'
23
+ end
24
+
25
+ Rake::TestTask.new do |t|
26
+ t.libs = %w(test)
27
+ t.pattern = 'test/**/*_test.rb'
28
+ end
29
+
30
+ task :default => :test
31
+
32
+ Rake::RDocTask.new do |r|
33
+ version = File.exist?('VERSION') ? File.read('VERSION') : nil
34
+ r.rdoc_dir = 'rdoc'
35
+ r.title = ['email_override', version].compact.join(' ')
36
+ r.rdoc_files.include('README*')
37
+ r.rdoc_files.include('lib/**/*.rb')
38
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.3
@@ -0,0 +1,51 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{email_override}
8
+ s.version = "0.1.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["laserlemon"]
12
+ s.date = %q{2009-10-07}
13
+ s.description = %q{Intercept ActionMailer email deliveries in non-production environments}
14
+ s.email = %q{steve@laserlemon.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "email_override.gemspec",
26
+ "init.rb",
27
+ "lib/email_override.rb",
28
+ "test/email_override_test.rb",
29
+ "test/test_helper.rb"
30
+ ]
31
+ s.homepage = %q{http://github.com/laserlemon/email_override}
32
+ s.rdoc_options = ["--charset=UTF-8"]
33
+ s.require_paths = ["lib"]
34
+ s.rubyforge_project = %q{laser-lemon}
35
+ s.rubygems_version = %q{1.3.5}
36
+ s.summary = %q{Intercept ActionMailer email deliveries in non-production environments}
37
+ s.test_files = [
38
+ "test/email_override_test.rb",
39
+ "test/test_helper.rb"
40
+ ]
41
+
42
+ if s.respond_to? :specification_version then
43
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
47
+ else
48
+ end
49
+ else
50
+ end
51
+ end
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'email_override'
@@ -0,0 +1,53 @@
1
+ module LaserLemon
2
+ module EmailOverride
3
+ def self.included(base)
4
+
5
+ base.cattr_accessor :local_environments
6
+ base.local_environments = %w(development test)
7
+
8
+ base.cattr_accessor :public_environments
9
+ base.public_environments = %w(production)
10
+
11
+ base.cattr_accessor :override_recipients
12
+ base.override_recipients = []
13
+
14
+ base.cattr_accessor :override_cc
15
+ base.override_cc = []
16
+
17
+ base.cattr_accessor :override_bcc
18
+ base.override_bcc = []
19
+
20
+ base.instance_eval do
21
+ include ClassInstanceMethods
22
+
23
+ alias_method_chain :recipients, :override
24
+ alias_method_chain :cc, :override
25
+ alias_method_chain :bcc, :override
26
+ end
27
+ end
28
+
29
+ module ClassInstanceMethods
30
+ def local?
31
+ local_environments.include?(Rails.env)
32
+ end
33
+
34
+ def public?
35
+ public_environments.include?(Rails.env)
36
+ end
37
+
38
+ def recipients_with_override(*args)
39
+ local? ? override_recipients : recipients_without_override(*args)
40
+ end
41
+
42
+ def cc_with_override(*args)
43
+ local? ? override_cc : cc_without_override(*args)
44
+ end
45
+
46
+ def bcc_with_override(*args)
47
+ local? ? override_bcc : bcc_without_override(*args)
48
+ end
49
+ end
50
+ end
51
+ end
52
+
53
+ ActionMailer::Base.send(:include, LaserLemon::EmailOverride)
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class EmailOverrideTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: email_override
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - laserlemon
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-10-07 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Intercept ActionMailer email deliveries in non-production environments
17
+ email: steve@laserlemon.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - LICENSE
24
+ - README.rdoc
25
+ files:
26
+ - .gitignore
27
+ - LICENSE
28
+ - README.rdoc
29
+ - Rakefile
30
+ - VERSION
31
+ - email_override.gemspec
32
+ - init.rb
33
+ - lib/email_override.rb
34
+ - test/email_override_test.rb
35
+ - test/test_helper.rb
36
+ has_rdoc: true
37
+ homepage: http://github.com/laserlemon/email_override
38
+ licenses: []
39
+
40
+ post_install_message:
41
+ rdoc_options:
42
+ - --charset=UTF-8
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: "0"
50
+ version:
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: "0"
56
+ version:
57
+ requirements: []
58
+
59
+ rubyforge_project: laser-lemon
60
+ rubygems_version: 1.3.5
61
+ signing_key:
62
+ specification_version: 3
63
+ summary: Intercept ActionMailer email deliveries in non-production environments
64
+ test_files:
65
+ - test/email_override_test.rb
66
+ - test/test_helper.rb