sendwithus_ruby_action_mailer 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +2 -2
- data/Rakefile +2 -2
- data/lib/sendwithus_ruby_action_mailer.rb +3 -0
- data/lib/{send_with_us_mailer → sendwithus_ruby_action_mailer}/base.rb +0 -0
- data/lib/{send_with_us_mailer → sendwithus_ruby_action_mailer}/mail_params.rb +0 -0
- data/lib/{send_with_us_mailer → sendwithus_ruby_action_mailer}/version.rb +1 -1
- data/{send_with_us_mailer.gemspec → sendwithus_ruby_action_mailer.gemspec} +3 -3
- data/test/lib/{send_with_us_mailer → sendwithus_ruby_action_mailer}/base_test.rb +0 -0
- data/test/lib/{send_with_us_mailer → sendwithus_ruby_action_mailer}/integration_test.rb +0 -0
- data/test/lib/{send_with_us_mailer → sendwithus_ruby_action_mailer}/mail_params_test.rb +0 -0
- data/test/test_helper.rb +1 -1
- metadata +13 -14
- data/lib/send_with_us_mailer.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d06e247bf9a5f38c03ca54eaf637f4ef84b20df
|
|
4
|
+
data.tar.gz: 3b4ad12f18f15b8f88d94c1163e82d62310db2af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c9aeec5161a07751d70800ee8372c441005805f9902fe3953933e965f16ddc02f2fac96e05bc7723ad6ec475f52cca4744bb74ab0fa7ddc6bd4080059ea55c1
|
|
7
|
+
data.tar.gz: 0d308e69cded6fb90de75727f02748c0add55fb120ab7b97a3259aab67e2bd2b94cb0647f971dd7aef5f5ad1f6f9760043ed25d3cbdf24d817519ebaf456dc41
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -11,7 +11,7 @@ gem implements a small layer over the `send_with_us` gem that provides and Actio
|
|
|
11
11
|
|
|
12
12
|
Add this line to your application's Gemfile:
|
|
13
13
|
|
|
14
|
-
gem '
|
|
14
|
+
gem 'sendwithus_ruby_action_mailer'
|
|
15
15
|
|
|
16
16
|
And then execute:
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ And then execute:
|
|
|
19
19
|
|
|
20
20
|
Or install it yourself as:
|
|
21
21
|
|
|
22
|
-
$ gem install
|
|
22
|
+
$ gem install sendwithus_ruby_action_mailer
|
|
23
23
|
|
|
24
24
|
## Setup
|
|
25
25
|
|
data/Rakefile
CHANGED
|
@@ -3,8 +3,8 @@ require "bundler/gem_tasks"
|
|
|
3
3
|
require 'rake/testtask'
|
|
4
4
|
|
|
5
5
|
Rake::TestTask.new do |t|
|
|
6
|
-
t.libs << 'lib/
|
|
7
|
-
t.test_files = FileList['test/lib/
|
|
6
|
+
t.libs << 'lib/sendwithus_ruby_action_mailer'
|
|
7
|
+
t.test_files = FileList['test/lib/sendwithus_ruby_action_mailer/*_test.rb']
|
|
8
8
|
t.verbose = true
|
|
9
9
|
end
|
|
10
10
|
|
|
File without changes
|
|
File without changes
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require '
|
|
4
|
+
require 'sendwithus_ruby_action_mailer/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = "sendwithus_ruby_action_mailer"
|
|
8
8
|
gem.version = SendWithUsMailer::VERSION
|
|
9
|
-
gem.authors = ["
|
|
9
|
+
gem.authors = ["Nicholas Rempel"]
|
|
10
10
|
gem.email = ["nick@sendwithus.com"]
|
|
11
11
|
gem.description = %q{A convenient way to use the Send With Us email
|
|
12
12
|
service with a Ruby on Rails app. SendWilthUsMailer implements a
|
|
13
13
|
mailer API similar to the ActionMailer railtie.}
|
|
14
14
|
gem.summary = %q{An ActionMailer look alike for Send With Us.}
|
|
15
|
-
gem.homepage = 'http://github.com/
|
|
15
|
+
gem.homepage = 'http://github.com/sendwithus/sendwithus_ruby_action_mailer'
|
|
16
16
|
gem.license = 'MIT'
|
|
17
17
|
|
|
18
18
|
gem.files = `git ls-files`.split($/)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sendwithus_ruby_action_mailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- David Lokhorst
|
|
8
7
|
- Nicholas Rempel
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
@@ -82,16 +81,16 @@ files:
|
|
|
82
81
|
- LICENSE.txt
|
|
83
82
|
- README.md
|
|
84
83
|
- Rakefile
|
|
85
|
-
- lib/
|
|
86
|
-
- lib/
|
|
87
|
-
- lib/
|
|
88
|
-
- lib/
|
|
89
|
-
-
|
|
90
|
-
- test/lib/
|
|
91
|
-
- test/lib/
|
|
92
|
-
- test/lib/
|
|
84
|
+
- lib/sendwithus_ruby_action_mailer.rb
|
|
85
|
+
- lib/sendwithus_ruby_action_mailer/base.rb
|
|
86
|
+
- lib/sendwithus_ruby_action_mailer/mail_params.rb
|
|
87
|
+
- lib/sendwithus_ruby_action_mailer/version.rb
|
|
88
|
+
- sendwithus_ruby_action_mailer.gemspec
|
|
89
|
+
- test/lib/sendwithus_ruby_action_mailer/base_test.rb
|
|
90
|
+
- test/lib/sendwithus_ruby_action_mailer/integration_test.rb
|
|
91
|
+
- test/lib/sendwithus_ruby_action_mailer/mail_params_test.rb
|
|
93
92
|
- test/test_helper.rb
|
|
94
|
-
homepage: http://github.com/
|
|
93
|
+
homepage: http://github.com/sendwithus/sendwithus_ruby_action_mailer
|
|
95
94
|
licenses:
|
|
96
95
|
- MIT
|
|
97
96
|
metadata: {}
|
|
@@ -116,7 +115,7 @@ signing_key:
|
|
|
116
115
|
specification_version: 4
|
|
117
116
|
summary: An ActionMailer look alike for Send With Us.
|
|
118
117
|
test_files:
|
|
119
|
-
- test/lib/
|
|
120
|
-
- test/lib/
|
|
121
|
-
- test/lib/
|
|
118
|
+
- test/lib/sendwithus_ruby_action_mailer/base_test.rb
|
|
119
|
+
- test/lib/sendwithus_ruby_action_mailer/integration_test.rb
|
|
120
|
+
- test/lib/sendwithus_ruby_action_mailer/mail_params_test.rb
|
|
122
121
|
- test/test_helper.rb
|
data/lib/send_with_us_mailer.rb
DELETED