mailgun-ruby 1.1.2 → 1.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.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/Snippets.md +1 -2
- data/lib/mailgun/client.rb +5 -3
- data/lib/mailgun/messages/message_builder.rb +20 -0
- data/lib/mailgun/suppressions.rb +267 -0
- data/lib/mailgun/version.rb +1 -1
- data/lib/railgun.rb +10 -0
- data/lib/railgun/attachment.rb +21 -0
- data/lib/railgun/errors.rb +27 -0
- data/lib/railgun/mailer.rb +162 -0
- data/lib/railgun/message.rb +17 -0
- data/spec/integration/suppressions_spec.rb +126 -0
- data/spec/unit/messages/message_builder_spec.rb +1 -1
- data/vcr_cassettes/suppressions.yml +676 -0
- metadata +11 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailgun-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mailgun
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2017-01-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -157,8 +157,14 @@ files:
|
|
157
157
|
- lib/mailgun/messages/batch_message.rb
|
158
158
|
- lib/mailgun/messages/message_builder.rb
|
159
159
|
- lib/mailgun/response.rb
|
160
|
+
- lib/mailgun/suppressions.rb
|
160
161
|
- lib/mailgun/version.rb
|
161
162
|
- lib/mailgun/webhooks/webhooks.rb
|
163
|
+
- lib/railgun.rb
|
164
|
+
- lib/railgun/attachment.rb
|
165
|
+
- lib/railgun/errors.rb
|
166
|
+
- lib/railgun/mailer.rb
|
167
|
+
- lib/railgun/message.rb
|
162
168
|
- mailgun.gemspec
|
163
169
|
- spec/integration/bounces_spec.rb
|
164
170
|
- spec/integration/campaign_spec.rb
|
@@ -172,6 +178,7 @@ files:
|
|
172
178
|
- spec/integration/messages/sample_data/mime.txt
|
173
179
|
- spec/integration/routes_spec.rb
|
174
180
|
- spec/integration/stats_spec.rb
|
181
|
+
- spec/integration/suppressions_spec.rb
|
175
182
|
- spec/integration/unsubscribes_spec.rb
|
176
183
|
- spec/integration/webhook_spec.rb
|
177
184
|
- spec/spec_helper.rb
|
@@ -197,6 +204,7 @@ files:
|
|
197
204
|
- vcr_cassettes/routes.yml
|
198
205
|
- vcr_cassettes/send_message.yml
|
199
206
|
- vcr_cassettes/stats.yml
|
207
|
+
- vcr_cassettes/suppressions.yml
|
200
208
|
- vcr_cassettes/unsubscribes.yml
|
201
209
|
- vcr_cassettes/webhooks.yml
|
202
210
|
homepage: http://www.mailgun.com
|
@@ -236,6 +244,7 @@ test_files:
|
|
236
244
|
- spec/integration/messages/sample_data/mime.txt
|
237
245
|
- spec/integration/routes_spec.rb
|
238
246
|
- spec/integration/stats_spec.rb
|
247
|
+
- spec/integration/suppressions_spec.rb
|
239
248
|
- spec/integration/unsubscribes_spec.rb
|
240
249
|
- spec/integration/webhook_spec.rb
|
241
250
|
- spec/spec_helper.rb
|