sendgrid_webapi 0.0.4 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +132 -0
- data/.circleci/setup-rubygems.sh +5 -0
- data/.gitignore +27 -1
- data/.rspec +2 -2
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/Gemfile +1 -0
- data/README.rdoc +27 -2
- data/lib/api_key/management.rb +33 -0
- data/lib/api_key/modules.rb +10 -0
- data/lib/apikey_client.rb +11 -0
- data/lib/base.rb +43 -12
- data/lib/helper.rb +8 -8
- data/lib/sendgrid_webapi.rb +1 -0
- data/lib/sub_user/modules.rb +15 -15
- data/lib/version.rb +2 -2
- data/lib/web_api/modules.rb +15 -11
- data/lib/web_api/version.rb +1 -1
- data/sendgrid_webapi.gemspec +10 -15
- data/spec/cassettes/client/_modules/_block/should_get_block_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_block/should_get_totals_blocks.yml +1 -1
- data/spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml +1 -1
- data/spec/cassettes/client/_modules/_bounce/should_get_bounce_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_bounce/should_get_totals_bounces.yml +1 -1
- data/spec/cassettes/client/_modules/_bounce/should_try_delete_not_existing_bounce_email.yml +1 -1
- data/spec/cassettes/client/_modules/_event_notification/should_delete_event_notification_url.yml +1 -1
- data/spec/cassettes/client/_modules/_event_notification/should_get_event_notification_url.yml +1 -1
- data/spec/cassettes/client/_modules/_event_notification/should_set_event_notification_url.yml +1 -1
- data/spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_invalid_email/should_try_delete_not_existing_invalid_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_parse_email/should_delete_parse_email.yml +2 -2
- data/spec/cassettes/client/_modules/_parse_email/should_get_parse_email.yml +1 -1
- data/spec/cassettes/client/_modules/_parse_email/should_set_parse_email.yml +1 -1
- data/spec/cassettes/client/_modules/_profile/should_get_profile.yml +1 -1
- data/spec/cassettes/client/_modules/_profile/should_set_first_name.yml +3 -3
- data/spec/cassettes/client/_modules/_spam/should_get_spam_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_spam/should_try_delete_not_existing_spam_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_unsubscribe/should_add_unsubscribe_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_unsubscribe/should_delete_unsubscribe_email.yml +1 -1
- data/spec/cassettes/client/_modules/_unsubscribe/should_get_unsubscribe_emails.yml +1 -1
- data/spec/cassettes/client/_modules/_unsubscribe/should_try_delete_not_existing_unsubscribe_emails.yml +1 -1
- data/spec/cassettes/helper/_create_sub_user_account/should_create_sub_user_account.yml +6 -6
- data/spec/cassettes/helper/_run_sendgrid_query/should_raise_with_unsucessfull_request.yml +1 -1
- data/spec/cassettes/helper/_run_sendgrid_query/should_run_sendgrid_request.yml +1 -1
- data/spec/cassettes/sub_user/_apps/should_activate_app.yml +1 -1
- data/spec/cassettes/sub_user/_apps/should_deactivate_app.yml +1 -1
- data/spec/cassettes/sub_user/_apps/should_get_current_setting_from_one_app.yml +1 -1
- data/spec/cassettes/sub_user/_apps/should_return_available_apps.yml +1 -1
- data/spec/cassettes/sub_user/_apps/should_set_current_app.yml +1 -1
- data/spec/cassettes/sub_user/_authentication/should_auth_a_sub_user.yml +1 -1
- data/spec/cassettes/sub_user/_authentication/should_return_error_with_a_bad_sub_user.yml +1 -1
- data/spec/cassettes/sub_user/_bounces/should_returns_bounce_emails.yml +1 -1
- data/spec/cassettes/sub_user/_bounces/should_tries_to_delete_unexisting_bounce_emails.yml +1 -1
- data/spec/cassettes/sub_user/_event_notification/should_add_event_notification_url.yml +1 -1
- data/spec/cassettes/sub_user/_event_notification/should_delete_event_notification_url.yml +1 -1
- data/spec/cassettes/sub_user/_event_notification/should_get_event_notification_url.yml +1 -1
- data/spec/cassettes/sub_user/_invalid_emails/should_return_invalid_emails.yml +1 -1
- data/spec/cassettes/sub_user/_invalid_emails/should_tries_to_delete_unexisting_invalid_mail.yml +1 -1
- data/spec/cassettes/sub_user/_ip_management/should_return_all_ips_available.yml +1 -1
- data/spec/cassettes/sub_user/_ip_management/should_show_ip_subuser.yml +1 -1
- data/spec/cassettes/sub_user/_limits/should_decrements_credits_for_a_sub_user.yml +2 -2
- data/spec/cassettes/sub_user/_limits/should_delete_all_limits_for_a_sub_user.yml +2 -2
- data/spec/cassettes/sub_user/_limits/should_increments_credits_for_a_sub_user.yml +2 -2
- data/spec/cassettes/sub_user/_limits/should_list_the_limits_for_a_sub_user.yml +1 -1
- data/spec/cassettes/sub_user/_limits/should_reset_all_limits_for_a_sub_user.yml +2 -2
- data/spec/cassettes/sub_user/_limits/should_returns_limits_for_a_sub_user.yml +1 -1
- data/spec/cassettes/sub_user/_limits/should_set_total_credits.yml +1 -1
- data/spec/cassettes/sub_user/_management/should_add_new_subuser.yml +1 -1
- data/spec/cassettes/sub_user/_management/should_disable_sub_user_for_send_email.yml +1 -1
- data/spec/cassettes/sub_user/_management/should_enable_sub_user_for_access_to_website.yml +1 -1
- data/spec/cassettes/sub_user/_management/should_enable_sub_user_for_send_email.yml +1 -1
- data/spec/cassettes/sub_user/_management/should_update_sub_user.yml +1 -1
- data/spec/cassettes/sub_user/_monitor_records/should_add_existing_sub_user_to_monitor_record.yml +2 -2
- data/spec/cassettes/sub_user/_monitor_records/should_create_a_new_monitor_record.yml +2 -2
- data/spec/cassettes/sub_user/_monitor_records/should_delete_a_monitor_record.yml +2 -2
- data/spec/cassettes/sub_user/_monitor_records/should_edit_a_monitor_record.yml +2 -2
- data/spec/cassettes/sub_user/_monitor_records/should_remove_existing_sub_user_from_monitor_record.yml +2 -2
- data/spec/cassettes/sub_user/_parse_email/should_delete_parse_email.yml +2 -2
- data/spec/cassettes/sub_user/_parse_email/should_get_parse_email.yml +1 -1
- data/spec/cassettes/sub_user/_parse_email/should_set_parse_email.yml +1 -1
- data/spec/cassettes/sub_user/_spam/should_return_spam_mails.yml +1 -1
- data/spec/cassettes/sub_user/_spam/should_tries_to_delete_unexisting_spam_mail.yml +1 -1
- data/spec/cassettes/sub_user/_unsubscribes/should_add_bounce_email.yml +1 -1
- data/spec/cassettes/sub_user/_unsubscribes/should_delete_existing_bounce_email.yml +1 -1
- data/spec/cassettes/sub_user/_unsubscribes/should_delete_unexisting_bounce_email.yml +1 -1
- data/spec/cassettes/sub_user/_unsubscribes/should_returns_bounce_emails.yml +1 -1
- data/spec/client_spec.rb +2 -2
- data/spec/helper_spec.rb +4 -4
- data/spec/sub_user_spec.rb +1 -1
- data/test.rb +1 -1
- metadata +73 -48
- data/.travis.yml +0 -5
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/apiv2/customer.monitor.json?
|
5
|
+
uri: https://sendgrid.com/apiv2/customer.monitor.json?name=testmonitor&new_frequency=10&task=edit
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -46,7 +46,7 @@ http_interactions:
|
|
46
46
|
recorded_at: Fri, 17 Jan 2014 01:25:57 GMT
|
47
47
|
- request:
|
48
48
|
method: get
|
49
|
-
uri: https://sendgrid.com/apiv2/customer.monitor.json?
|
49
|
+
uri: https://sendgrid.com/apiv2/customer.monitor.json?task=list
|
50
50
|
body:
|
51
51
|
encoding: US-ASCII
|
52
52
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/apiv2/customer.monitor.json?
|
5
|
+
uri: https://sendgrid.com/apiv2/customer.monitor.json?name=testmonitor&task=detach&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -46,7 +46,7 @@ http_interactions:
|
|
46
46
|
recorded_at: Fri, 17 Jan 2014 01:26:07 GMT
|
47
47
|
- request:
|
48
48
|
method: get
|
49
|
-
uri: https://sendgrid.com/apiv2/customer.monitor.json?
|
49
|
+
uri: https://sendgrid.com/apiv2/customer.monitor.json?task=list
|
50
50
|
body:
|
51
51
|
encoding: US-ASCII
|
52
52
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/apiv2/customer.parse.json?
|
5
|
+
uri: https://sendgrid.com/apiv2/customer.parse.json?hostname=www.example.com&task=delete&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -46,7 +46,7 @@ http_interactions:
|
|
46
46
|
recorded_at: Fri, 17 Jan 2014 01:26:57 GMT
|
47
47
|
- request:
|
48
48
|
method: get
|
49
|
-
uri: https://sendgrid.com/apiv2/customer.parse.json?
|
49
|
+
uri: https://sendgrid.com/apiv2/customer.parse.json?task=get&user=sendgrid_testuser3
|
50
50
|
body:
|
51
51
|
encoding: US-ASCII
|
52
52
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/apiv2/customer.parse.json?
|
5
|
+
uri: https://sendgrid.com/apiv2/customer.parse.json?task=get&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/apiv2/customer.parse.json?
|
5
|
+
uri: https://sendgrid.com/apiv2/customer.parse.json?hostname=www.example.com&spam_check=1&task=set&url=www.mydomain.com/parse.php&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/api/user.spamreports.json?
|
5
|
+
uri: https://sendgrid.com/api/user.spamreports.json?task=get&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/api/user.spamreports.json?
|
5
|
+
uri: https://sendgrid.com/api/user.spamreports.json?email=test@email.com&task=delete&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/api/user.unsubscribes.json?
|
5
|
+
uri: https://sendgrid.com/api/user.unsubscribes.json?email=test@email.com&task=add&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/api/user.unsubscribes.json?
|
5
|
+
uri: https://sendgrid.com/api/user.unsubscribes.json?email=test@email.com&task=delete&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/api/user.unsubscribes.json?
|
5
|
+
uri: https://sendgrid.com/api/user.unsubscribes.json?email=test@email.com&task=delete&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sendgrid.com/api/user.unsubscribes.json?
|
5
|
+
uri: https://sendgrid.com/api/user.unsubscribes.json?task=get&user=sendgrid_testuser3
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
data/spec/client_spec.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe "client" do
|
4
|
-
let(:client) { SendGridWebApi::Client.new("
|
4
|
+
let(:client) { SendGridWebApi::Client.new("apikey") }
|
5
5
|
|
6
6
|
|
7
7
|
describe "#base", :vcr do
|
@@ -11,7 +11,7 @@ describe "client" do
|
|
11
11
|
|
12
12
|
it "should return request url" do
|
13
13
|
client.make_request_url("blocks.get.json", {:data => 1}).
|
14
|
-
should eql "blocks.get.json?
|
14
|
+
should eql "blocks.get.json?data=1"
|
15
15
|
end
|
16
16
|
|
17
17
|
it "should convert hash to url params" do
|
data/spec/helper_spec.rb
CHANGED
@@ -3,18 +3,18 @@ require 'spec_helper'
|
|
3
3
|
describe "helper" do
|
4
4
|
include SendGridWebApi::Helper
|
5
5
|
|
6
|
-
let(:client) { SendGridWebApi::Client.new("
|
6
|
+
let(:client) { SendGridWebApi::Client.new("apikey") }
|
7
7
|
|
8
8
|
describe "#run_sendgrid_query" do
|
9
9
|
it "should run sendgrid request", :vcr do
|
10
|
-
run_sendgrid_query("
|
10
|
+
run_sendgrid_query("apikey") do
|
11
11
|
@client.sub_user.apps.activate(:user => "sendgrid_testuser3", :name => "clicktrack")
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
15
|
it "should raise with unsucessfull request", :vcr do
|
16
16
|
lambda do
|
17
|
-
run_sendgrid_query("
|
17
|
+
run_sendgrid_query("apikey") do
|
18
18
|
@client.sub_user.apps.activate(:user => "sendgrid_testuser3", :name => "badappname")
|
19
19
|
end
|
20
20
|
end.should raise_error
|
@@ -39,7 +39,7 @@ describe "helper" do
|
|
39
39
|
end
|
40
40
|
|
41
41
|
it "should create sub_user_account" do
|
42
|
-
create_sub_user_account("
|
42
|
+
create_sub_user_account("apikey", @users)
|
43
43
|
client.sub_user.auth.login(:user => "test-6", :password => "somepass").
|
44
44
|
should == {"message" => "success"}
|
45
45
|
end
|
data/spec/sub_user_spec.rb
CHANGED
data/test.rb
CHANGED
metadata
CHANGED
@@ -1,100 +1,120 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sendgrid_webapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kylejginavan
|
8
8
|
- chebyte
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: faraday
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - ~>
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
21
|
-
type: :
|
20
|
+
version: '1.0'
|
21
|
+
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - ~>
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: '1.0'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
|
-
name:
|
29
|
+
name: faraday_middleware
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- - ~>
|
32
|
+
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 1.
|
35
|
-
type: :
|
34
|
+
version: '1.0'
|
35
|
+
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- - ~>
|
39
|
+
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 1.
|
41
|
+
version: '1.0'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
|
-
name:
|
43
|
+
name: json
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - ~>
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '2.0'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
47
54
|
- !ruby/object:Gem::Version
|
48
|
-
version: 2.
|
55
|
+
version: '2.0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rspec
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '3.4'
|
49
63
|
type: :development
|
50
64
|
prerelease: false
|
51
65
|
version_requirements: !ruby/object:Gem::Requirement
|
52
66
|
requirements:
|
53
|
-
- - ~>
|
67
|
+
- - "~>"
|
54
68
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
69
|
+
version: '3.4'
|
56
70
|
- !ruby/object:Gem::Dependency
|
57
|
-
name:
|
71
|
+
name: webmock
|
58
72
|
requirement: !ruby/object:Gem::Requirement
|
59
73
|
requirements:
|
60
|
-
- - ~>
|
74
|
+
- - "~>"
|
61
75
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
63
|
-
type: :
|
76
|
+
version: '3.12'
|
77
|
+
type: :development
|
64
78
|
prerelease: false
|
65
79
|
version_requirements: !ruby/object:Gem::Requirement
|
66
80
|
requirements:
|
67
|
-
- - ~>
|
81
|
+
- - "~>"
|
68
82
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
83
|
+
version: '3.12'
|
70
84
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
85
|
+
name: vcr
|
72
86
|
requirement: !ruby/object:Gem::Requirement
|
73
87
|
requirements:
|
74
|
-
- - ~>
|
88
|
+
- - "~>"
|
75
89
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
77
|
-
type: :
|
90
|
+
version: '6.0'
|
91
|
+
type: :development
|
78
92
|
prerelease: false
|
79
93
|
version_requirements: !ruby/object:Gem::Requirement
|
80
94
|
requirements:
|
81
|
-
- - ~>
|
95
|
+
- - "~>"
|
82
96
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
97
|
+
version: '6.0'
|
84
98
|
- !ruby/object:Gem::Dependency
|
85
|
-
name:
|
99
|
+
name: rspec_junit_formatter
|
86
100
|
requirement: !ruby/object:Gem::Requirement
|
87
101
|
requirements:
|
88
|
-
- - ~>
|
102
|
+
- - "~>"
|
89
103
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
91
|
-
|
104
|
+
version: '0.3'
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: 0.3.0
|
108
|
+
type: :development
|
92
109
|
prerelease: false
|
93
110
|
version_requirements: !ruby/object:Gem::Requirement
|
94
111
|
requirements:
|
95
|
-
- - ~>
|
112
|
+
- - "~>"
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0.3'
|
115
|
+
- - ">="
|
96
116
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
117
|
+
version: 0.3.0
|
98
118
|
description: Gem for access to SendGrid WEB API from rails
|
99
119
|
email:
|
100
120
|
- kylejginavan@gmail.com
|
@@ -103,12 +123,18 @@ executables: []
|
|
103
123
|
extensions: []
|
104
124
|
extra_rdoc_files: []
|
105
125
|
files:
|
106
|
-
- .
|
107
|
-
- .
|
108
|
-
- .
|
126
|
+
- ".circleci/config.yml"
|
127
|
+
- ".circleci/setup-rubygems.sh"
|
128
|
+
- ".gitignore"
|
129
|
+
- ".rspec"
|
130
|
+
- ".ruby-version"
|
131
|
+
- ".tool-versions"
|
109
132
|
- Gemfile
|
110
133
|
- README.rdoc
|
111
134
|
- Rakefile
|
135
|
+
- lib/api_key/management.rb
|
136
|
+
- lib/api_key/modules.rb
|
137
|
+
- lib/apikey_client.rb
|
112
138
|
- lib/base.rb
|
113
139
|
- lib/helper.rb
|
114
140
|
- lib/middlewares/sendgrid_response.rb
|
@@ -217,27 +243,26 @@ files:
|
|
217
243
|
- spec/spec_helper.rb
|
218
244
|
- spec/sub_user_spec.rb
|
219
245
|
- test.rb
|
220
|
-
homepage: https://github.com/kylejginavan/
|
246
|
+
homepage: https://github.com/kylejginavan/sendgrid_webapi
|
221
247
|
licenses: []
|
222
248
|
metadata: {}
|
223
|
-
post_install_message:
|
249
|
+
post_install_message:
|
224
250
|
rdoc_options: []
|
225
251
|
require_paths:
|
226
252
|
- lib
|
227
253
|
required_ruby_version: !ruby/object:Gem::Requirement
|
228
254
|
requirements:
|
229
|
-
- -
|
255
|
+
- - ">="
|
230
256
|
- !ruby/object:Gem::Version
|
231
257
|
version: '0'
|
232
258
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
233
259
|
requirements:
|
234
|
-
- -
|
260
|
+
- - ">="
|
235
261
|
- !ruby/object:Gem::Version
|
236
262
|
version: '0'
|
237
263
|
requirements: []
|
238
|
-
|
239
|
-
|
240
|
-
signing_key:
|
264
|
+
rubygems_version: 3.2.3
|
265
|
+
signing_key:
|
241
266
|
specification_version: 4
|
242
267
|
summary: SendGrid WEB API gem fo Rails
|
243
268
|
test_files:
|