sendwithus_ruby_action_mailer 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb92d4846ee580488478b70d1a9149e19493186a
4
- data.tar.gz: f6373e3336cb4071df22121e0ee1c79dacc4812f
3
+ metadata.gz: 6d06e247bf9a5f38c03ca54eaf637f4ef84b20df
4
+ data.tar.gz: 3b4ad12f18f15b8f88d94c1163e82d62310db2af
5
5
  SHA512:
6
- metadata.gz: b73e0d6cfa96393ebb545912e01910fb9478c047d7702e2a634127bfe33bff2c55da2cbcafdc8f8210df1281565c2d68dc400c7497231cb5524a8b6a42e71b76
7
- data.tar.gz: 55b6a04bd2025fd875a9909a9550c32eba8140f90220fd2cb3200fbfa95d9a5cee46ebb33c50b313e061e226a7040c3ab8a882cd1d6482f3e313bf1e70007466
6
+ metadata.gz: 6c9aeec5161a07751d70800ee8372c441005805f9902fe3953933e965f16ddc02f2fac96e05bc7723ad6ec475f52cca4744bb74ab0fa7ddc6bd4080059ea55c1
7
+ data.tar.gz: 0d308e69cded6fb90de75727f02748c0add55fb120ab7b97a3259aab67e2bd2b94cb0647f971dd7aef5f5ad1f6f9760043ed25d3cbdf24d817519ebaf456dc41
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in send_with_us_mailer.gemspec
3
+ # Specify your gem's dependencies in sendwithus_ruby_action_mailer.gemspec
4
4
  gemspec
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 'send_with_us_mailer'
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 send_with_us_mailer
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/send_with_us_mailer'
7
- t.test_files = FileList['test/lib/send_with_us_mailer/*_test.rb']
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
 
@@ -0,0 +1,3 @@
1
+ require "sendwithus_ruby_action_mailer/version"
2
+ require "sendwithus_ruby_action_mailer/base"
3
+ require "sendwithus_ruby_action_mailer/mail_params"
@@ -1,3 +1,3 @@
1
1
  module SendWithUsMailer
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -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 'send_with_us_mailer/version'
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 = ["David Lokhorst", "Nicholas Rempel"]
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/nrempel/SendWithUs-Mailer'
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($/)
data/test/test_helper.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  require 'minitest/autorun'
2
2
  require 'mocha/setup'
3
- require File.expand_path('../../lib/send_with_us_mailer.rb', __FILE__)
3
+ require File.expand_path('../../lib/sendwithus_ruby_action_mailer.rb', __FILE__)
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.0
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/send_with_us_mailer.rb
86
- - lib/send_with_us_mailer/base.rb
87
- - lib/send_with_us_mailer/mail_params.rb
88
- - lib/send_with_us_mailer/version.rb
89
- - send_with_us_mailer.gemspec
90
- - test/lib/send_with_us_mailer/base_test.rb
91
- - test/lib/send_with_us_mailer/integration_test.rb
92
- - test/lib/send_with_us_mailer/mail_params_test.rb
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/nrempel/SendWithUs-Mailer
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/send_with_us_mailer/base_test.rb
120
- - test/lib/send_with_us_mailer/integration_test.rb
121
- - test/lib/send_with_us_mailer/mail_params_test.rb
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
@@ -1,3 +0,0 @@
1
- require "send_with_us_mailer/version"
2
- require "send_with_us_mailer/base"
3
- require "send_with_us_mailer/mail_params"