sendgrid_webapi 0.2.0 → 0.2.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/.tekton/templates/pipelinerun.yaml +1 -1
- data/README.rdoc +0 -2
- data/lib/version.rb +1 -1
- data/lib/web_api/address_whitelist.rb +24 -0
- data/lib/web_api/modules.rb +5 -1
- data/spec/cassettes/client/_modules/_address_whitelist/should_add_email_to_whitelist.yml +36 -0
- data/spec/cassettes/client/_modules/_address_whitelist/should_delete_email_from_whitelist.yml +36 -0
- data/spec/cassettes/client/_modules/_address_whitelist/should_get_address_whitelist.yml +36 -0
- data/spec/cassettes/client/_modules/_block/should_get_block_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_block/should_get_totals_blocks.yml +33 -33
- data/spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml +33 -33
- data/spec/cassettes/client/_modules/_bounce/should_get_bounce_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_bounce/should_get_bounce_emails_using_params.yml +33 -33
- data/spec/cassettes/client/_modules/_bounce/should_try_delete_not_existing_bounce_email.yml +33 -33
- data/spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails_using_params.yml +33 -33
- data/spec/cassettes/client/_modules/_invalid_email/should_try_delete_not_existing_invalid_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_spam/should_get_spam_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_spam/should_try_delete_not_existing_spam_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_unsubscribe/should_add_unsubscribe_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_unsubscribe/should_delete_unsubscribe_email.yml +33 -33
- data/spec/cassettes/client/_modules/_unsubscribe/should_get_unsubscribe_emails.yml +33 -33
- data/spec/cassettes/client/_modules/_unsubscribe/should_try_delete_not_existing_unsubscribe_emails.yml +33 -33
- data/spec/client_spec.rb +17 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sendgrid_webapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kylejginavan
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-02-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
@@ -162,6 +162,7 @@ files:
|
|
162
162
|
- lib/sub_user/white_label.rb
|
163
163
|
- lib/subuser_client.rb
|
164
164
|
- lib/version.rb
|
165
|
+
- lib/web_api/address_whitelist.rb
|
165
166
|
- lib/web_api/blocks.rb
|
166
167
|
- lib/web_api/bounces.rb
|
167
168
|
- lib/web_api/event_notification.rb
|
@@ -176,6 +177,9 @@ files:
|
|
176
177
|
- lib/web_api/version.rb
|
177
178
|
- lib/webapi_client.rb
|
178
179
|
- sendgrid_webapi.gemspec
|
180
|
+
- spec/cassettes/client/_modules/_address_whitelist/should_add_email_to_whitelist.yml
|
181
|
+
- spec/cassettes/client/_modules/_address_whitelist/should_delete_email_from_whitelist.yml
|
182
|
+
- spec/cassettes/client/_modules/_address_whitelist/should_get_address_whitelist.yml
|
179
183
|
- spec/cassettes/client/_modules/_block/should_get_block_emails.yml
|
180
184
|
- spec/cassettes/client/_modules/_block/should_get_totals_blocks.yml
|
181
185
|
- spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml
|