sendgrid_webapi 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/README.rdoc +389 -0
- data/Rakefile +5 -0
- data/lib/base.rb +41 -0
- data/lib/helper.rb +36 -0
- data/lib/middlewares/sendgrid_response.rb +42 -0
- data/lib/sendgrid_webapi.rb +5 -0
- data/lib/sub_user/apps.rb +31 -0
- data/lib/sub_user/auth.rb +10 -0
- data/lib/sub_user/bounces.rb +15 -0
- data/lib/sub_user/event_notification.rb +20 -0
- data/lib/sub_user/iframe.rb +8 -0
- data/lib/sub_user/invalid_emails.rb +15 -0
- data/lib/sub_user/ip_management.rb +23 -0
- data/lib/sub_user/limits.rb +35 -0
- data/lib/sub_user/management.rb +57 -0
- data/lib/sub_user/modules.rb +68 -0
- data/lib/sub_user/monitor_records.rb +35 -0
- data/lib/sub_user/parse.rb +20 -0
- data/lib/sub_user/spam.rb +15 -0
- data/lib/sub_user/stats.rb +8 -0
- data/lib/sub_user/unsubscribes.rb +21 -0
- data/lib/sub_user/white_label.rb +16 -0
- data/lib/subuser_client.rb +11 -0
- data/lib/web_api/blocks.rb +13 -0
- data/lib/web_api/bounces.rb +13 -0
- data/lib/web_api/event_notification.rb +18 -0
- data/lib/web_api/invalid_emails.rb +13 -0
- data/lib/web_api/mail.rb +8 -0
- data/lib/web_api/modules.rb +50 -0
- data/lib/web_api/parse.rb +18 -0
- data/lib/web_api/profile.rb +29 -0
- data/lib/web_api/spam.rb +13 -0
- data/lib/web_api/stats.rb +8 -0
- data/lib/web_api/unsubscribes.rb +18 -0
- data/lib/web_api/version.rb +3 -0
- data/lib/webapi_client.rb +12 -0
- data/sendgrid_webapi.gemspec +27 -0
- data/spec/cassettes/client/_modules/_block/should_get_block_emails.yml +48 -0
- data/spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml +49 -0
- data/spec/cassettes/client/_modules/_bounce/should_get_bounce_emails.yml +40 -0
- data/spec/cassettes/client/_modules/_bounce/should_try_delete_not_existing_bounce_email.yml +41 -0
- data/spec/cassettes/client/_modules/_event_notification/should_delete_event_notification_url.yml +49 -0
- data/spec/cassettes/client/_modules/_event_notification/should_get_event_notification_url.yml +49 -0
- data/spec/cassettes/client/_modules/_event_notification/should_set_event_notification_url.yml +49 -0
- data/spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails.yml +40 -0
- data/spec/cassettes/client/_modules/_invalid_email/should_try_delete_not_existing_invalid_emails.yml +41 -0
- data/spec/cassettes/client/_modules/_parse_email/should_delete_parse_email.yml +94 -0
- data/spec/cassettes/client/_modules/_parse_email/should_get_parse_email.yml +50 -0
- data/spec/cassettes/client/_modules/_parse_email/should_set_parse_email.yml +49 -0
- data/spec/cassettes/client/_modules/_profile/should_get_profile.yml +52 -0
- data/spec/cassettes/client/_modules/_profile/should_set_first_name.yml +144 -0
- data/spec/cassettes/client/_modules/_spam/should_get_spam_emails.yml +40 -0
- data/spec/cassettes/client/_modules/_spam/should_try_delete_not_existing_spam_emails.yml +41 -0
- data/spec/cassettes/client/_modules/_unsubscribe/should_add_unsubscribe_emails.yml +40 -0
- data/spec/cassettes/client/_modules/_unsubscribe/should_delete_unsubscribe_email.yml +40 -0
- data/spec/cassettes/client/_modules/_unsubscribe/should_get_unsubscribe_emails.yml +41 -0
- data/spec/cassettes/client/_modules/_unsubscribe/should_try_delete_not_existing_unsubscribe_emails.yml +41 -0
- data/spec/cassettes/helper/_create_sub_user_account/should_create_sub_user_account.yml +318 -0
- data/spec/cassettes/helper/_run_sendgrid_query/should_raise_with_unsucessfull_request.yml +46 -0
- data/spec/cassettes/helper/_run_sendgrid_query/should_run_sendgrid_request.yml +49 -0
- data/spec/cassettes/sub_user/_apps/should_activate_app.yml +49 -0
- data/spec/cassettes/sub_user/_apps/should_deactivate_app.yml +49 -0
- data/spec/cassettes/sub_user/_apps/should_get_current_setting_from_one_app.yml +50 -0
- data/spec/cassettes/sub_user/_apps/should_return_available_apps.yml +64 -0
- data/spec/cassettes/sub_user/_apps/should_set_current_app.yml +90 -0
- data/spec/cassettes/sub_user/_authentication/should_auth_a_sub_user.yml +49 -0
- data/spec/cassettes/sub_user/_authentication/should_return_error_with_a_bad_sub_user.yml +49 -0
- data/spec/cassettes/sub_user/_bounces/should_returns_bounce_emails.yml +48 -0
- data/spec/cassettes/sub_user/_bounces/should_tries_to_delete_unexisting_bounce_emails.yml +49 -0
- data/spec/cassettes/sub_user/_event_notification/should_add_event_notification_url.yml +49 -0
- data/spec/cassettes/sub_user/_event_notification/should_delete_event_notification_url.yml +49 -0
- data/spec/cassettes/sub_user/_event_notification/should_get_event_notification_url.yml +49 -0
- data/spec/cassettes/sub_user/_invalid_emails/should_return_invalid_emails.yml +48 -0
- data/spec/cassettes/sub_user/_invalid_emails/should_tries_to_delete_unexisting_invalid_mail.yml +49 -0
- data/spec/cassettes/sub_user/_ip_management/should_return_all_ips_available.yml +49 -0
- data/spec/cassettes/sub_user/_ip_management/should_show_ip_subuser.yml +49 -0
- data/spec/cassettes/sub_user/_limits/should_decrements_credits_for_a_sub_user.yml +95 -0
- data/spec/cassettes/sub_user/_limits/should_delete_all_limits_for_a_sub_user.yml +94 -0
- data/spec/cassettes/sub_user/_limits/should_increments_credits_for_a_sub_user.yml +95 -0
- data/spec/cassettes/sub_user/_limits/should_list_the_limits_for_a_sub_user.yml +49 -0
- data/spec/cassettes/sub_user/_limits/should_reset_all_limits_for_a_sub_user.yml +95 -0
- data/spec/cassettes/sub_user/_limits/should_returns_limits_for_a_sub_user.yml +49 -0
- data/spec/cassettes/sub_user/_limits/should_set_total_credits.yml +49 -0
- data/spec/cassettes/sub_user/_management/should_add_new_subuser.yml +49 -0
- data/spec/cassettes/sub_user/_management/should_disable_sub_user_for_send_email.yml +49 -0
- data/spec/cassettes/sub_user/_management/should_enable_sub_user_for_access_to_website.yml +49 -0
- data/spec/cassettes/sub_user/_management/should_enable_sub_user_for_send_email.yml +49 -0
- data/spec/cassettes/sub_user/_management/should_get_all_subusers.yml +54 -0
- data/spec/cassettes/sub_user/_management/should_update_sub_user.yml +49 -0
- data/spec/cassettes/sub_user/_monitor_records/should_add_existing_sub_user_to_monitor_record.yml +96 -0
- data/spec/cassettes/sub_user/_monitor_records/should_create_a_new_monitor_record.yml +96 -0
- data/spec/cassettes/sub_user/_monitor_records/should_delete_a_monitor_record.yml +94 -0
- data/spec/cassettes/sub_user/_monitor_records/should_edit_a_monitor_record.yml +96 -0
- data/spec/cassettes/sub_user/_monitor_records/should_remove_existing_sub_user_from_monitor_record.yml +96 -0
- data/spec/cassettes/sub_user/_parse_email/should_delete_parse_email.yml +94 -0
- data/spec/cassettes/sub_user/_parse_email/should_get_parse_email.yml +50 -0
- data/spec/cassettes/sub_user/_parse_email/should_set_parse_email.yml +49 -0
- data/spec/cassettes/sub_user/_spam/should_return_spam_mails.yml +48 -0
- data/spec/cassettes/sub_user/_spam/should_tries_to_delete_unexisting_spam_mail.yml +49 -0
- data/spec/cassettes/sub_user/_unsubscribes/should_add_bounce_email.yml +49 -0
- data/spec/cassettes/sub_user/_unsubscribes/should_delete_existing_bounce_email.yml +49 -0
- data/spec/cassettes/sub_user/_unsubscribes/should_delete_unexisting_bounce_email.yml +49 -0
- data/spec/cassettes/sub_user/_unsubscribes/should_returns_bounce_emails.yml +49 -0
- data/spec/client_spec.rb +132 -0
- data/spec/helper_spec.rb +47 -0
- data/spec/spec_helper.rb +13 -0
- data/spec/sub_user_spec.rb +270 -0
- metadata +290 -0
metadata
ADDED
@@ -0,0 +1,290 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sendgrid_webapi
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.1
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- kylejginavan
|
9
|
+
- chebyte
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
|
14
|
+
date: 2012-12-17 00:00:00 Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rspec
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.10.0
|
25
|
+
type: :development
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: webmock
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ~>
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 1.8.7
|
36
|
+
type: :development
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: vcr
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ~>
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.1.1
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id003
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: faraday
|
51
|
+
prerelease: false
|
52
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ~>
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 0.8.0
|
58
|
+
type: :runtime
|
59
|
+
version_requirements: *id004
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: json
|
62
|
+
prerelease: false
|
63
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.7.3
|
69
|
+
type: :runtime
|
70
|
+
version_requirements: *id005
|
71
|
+
description: Gem for access to SendGrid WEB API from rails
|
72
|
+
email:
|
73
|
+
- kylejginavan@gmail.com
|
74
|
+
- maurotorres@gmail.com
|
75
|
+
executables: []
|
76
|
+
|
77
|
+
extensions: []
|
78
|
+
|
79
|
+
extra_rdoc_files: []
|
80
|
+
|
81
|
+
files:
|
82
|
+
- .gitignore
|
83
|
+
- .rspec
|
84
|
+
- .travis.yml
|
85
|
+
- Gemfile
|
86
|
+
- README.rdoc
|
87
|
+
- Rakefile
|
88
|
+
- lib/base.rb
|
89
|
+
- lib/helper.rb
|
90
|
+
- lib/middlewares/sendgrid_response.rb
|
91
|
+
- lib/sendgrid_webapi.rb
|
92
|
+
- lib/sub_user/apps.rb
|
93
|
+
- lib/sub_user/auth.rb
|
94
|
+
- lib/sub_user/bounces.rb
|
95
|
+
- lib/sub_user/event_notification.rb
|
96
|
+
- lib/sub_user/iframe.rb
|
97
|
+
- lib/sub_user/invalid_emails.rb
|
98
|
+
- lib/sub_user/ip_management.rb
|
99
|
+
- lib/sub_user/limits.rb
|
100
|
+
- lib/sub_user/management.rb
|
101
|
+
- lib/sub_user/modules.rb
|
102
|
+
- lib/sub_user/monitor_records.rb
|
103
|
+
- lib/sub_user/parse.rb
|
104
|
+
- lib/sub_user/spam.rb
|
105
|
+
- lib/sub_user/stats.rb
|
106
|
+
- lib/sub_user/unsubscribes.rb
|
107
|
+
- lib/sub_user/white_label.rb
|
108
|
+
- lib/subuser_client.rb
|
109
|
+
- lib/web_api/blocks.rb
|
110
|
+
- lib/web_api/bounces.rb
|
111
|
+
- lib/web_api/event_notification.rb
|
112
|
+
- lib/web_api/invalid_emails.rb
|
113
|
+
- lib/web_api/mail.rb
|
114
|
+
- lib/web_api/modules.rb
|
115
|
+
- lib/web_api/parse.rb
|
116
|
+
- lib/web_api/profile.rb
|
117
|
+
- lib/web_api/spam.rb
|
118
|
+
- lib/web_api/stats.rb
|
119
|
+
- lib/web_api/unsubscribes.rb
|
120
|
+
- lib/web_api/version.rb
|
121
|
+
- lib/webapi_client.rb
|
122
|
+
- sendgrid_webapi.gemspec
|
123
|
+
- spec/cassettes/client/_modules/_block/should_get_block_emails.yml
|
124
|
+
- spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml
|
125
|
+
- spec/cassettes/client/_modules/_bounce/should_get_bounce_emails.yml
|
126
|
+
- spec/cassettes/client/_modules/_bounce/should_try_delete_not_existing_bounce_email.yml
|
127
|
+
- spec/cassettes/client/_modules/_event_notification/should_delete_event_notification_url.yml
|
128
|
+
- spec/cassettes/client/_modules/_event_notification/should_get_event_notification_url.yml
|
129
|
+
- spec/cassettes/client/_modules/_event_notification/should_set_event_notification_url.yml
|
130
|
+
- spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails.yml
|
131
|
+
- spec/cassettes/client/_modules/_invalid_email/should_try_delete_not_existing_invalid_emails.yml
|
132
|
+
- spec/cassettes/client/_modules/_parse_email/should_delete_parse_email.yml
|
133
|
+
- spec/cassettes/client/_modules/_parse_email/should_get_parse_email.yml
|
134
|
+
- spec/cassettes/client/_modules/_parse_email/should_set_parse_email.yml
|
135
|
+
- spec/cassettes/client/_modules/_profile/should_get_profile.yml
|
136
|
+
- spec/cassettes/client/_modules/_profile/should_set_first_name.yml
|
137
|
+
- spec/cassettes/client/_modules/_spam/should_get_spam_emails.yml
|
138
|
+
- spec/cassettes/client/_modules/_spam/should_try_delete_not_existing_spam_emails.yml
|
139
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_add_unsubscribe_emails.yml
|
140
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_delete_unsubscribe_email.yml
|
141
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_get_unsubscribe_emails.yml
|
142
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_try_delete_not_existing_unsubscribe_emails.yml
|
143
|
+
- spec/cassettes/helper/_create_sub_user_account/should_create_sub_user_account.yml
|
144
|
+
- spec/cassettes/helper/_run_sendgrid_query/should_raise_with_unsucessfull_request.yml
|
145
|
+
- spec/cassettes/helper/_run_sendgrid_query/should_run_sendgrid_request.yml
|
146
|
+
- spec/cassettes/sub_user/_apps/should_activate_app.yml
|
147
|
+
- spec/cassettes/sub_user/_apps/should_deactivate_app.yml
|
148
|
+
- spec/cassettes/sub_user/_apps/should_get_current_setting_from_one_app.yml
|
149
|
+
- spec/cassettes/sub_user/_apps/should_return_available_apps.yml
|
150
|
+
- spec/cassettes/sub_user/_apps/should_set_current_app.yml
|
151
|
+
- spec/cassettes/sub_user/_authentication/should_auth_a_sub_user.yml
|
152
|
+
- spec/cassettes/sub_user/_authentication/should_return_error_with_a_bad_sub_user.yml
|
153
|
+
- spec/cassettes/sub_user/_bounces/should_returns_bounce_emails.yml
|
154
|
+
- spec/cassettes/sub_user/_bounces/should_tries_to_delete_unexisting_bounce_emails.yml
|
155
|
+
- spec/cassettes/sub_user/_event_notification/should_add_event_notification_url.yml
|
156
|
+
- spec/cassettes/sub_user/_event_notification/should_delete_event_notification_url.yml
|
157
|
+
- spec/cassettes/sub_user/_event_notification/should_get_event_notification_url.yml
|
158
|
+
- spec/cassettes/sub_user/_invalid_emails/should_return_invalid_emails.yml
|
159
|
+
- spec/cassettes/sub_user/_invalid_emails/should_tries_to_delete_unexisting_invalid_mail.yml
|
160
|
+
- spec/cassettes/sub_user/_ip_management/should_return_all_ips_available.yml
|
161
|
+
- spec/cassettes/sub_user/_ip_management/should_show_ip_subuser.yml
|
162
|
+
- spec/cassettes/sub_user/_limits/should_decrements_credits_for_a_sub_user.yml
|
163
|
+
- spec/cassettes/sub_user/_limits/should_delete_all_limits_for_a_sub_user.yml
|
164
|
+
- spec/cassettes/sub_user/_limits/should_increments_credits_for_a_sub_user.yml
|
165
|
+
- spec/cassettes/sub_user/_limits/should_list_the_limits_for_a_sub_user.yml
|
166
|
+
- spec/cassettes/sub_user/_limits/should_reset_all_limits_for_a_sub_user.yml
|
167
|
+
- spec/cassettes/sub_user/_limits/should_returns_limits_for_a_sub_user.yml
|
168
|
+
- spec/cassettes/sub_user/_limits/should_set_total_credits.yml
|
169
|
+
- spec/cassettes/sub_user/_management/should_add_new_subuser.yml
|
170
|
+
- spec/cassettes/sub_user/_management/should_disable_sub_user_for_send_email.yml
|
171
|
+
- spec/cassettes/sub_user/_management/should_enable_sub_user_for_access_to_website.yml
|
172
|
+
- spec/cassettes/sub_user/_management/should_enable_sub_user_for_send_email.yml
|
173
|
+
- spec/cassettes/sub_user/_management/should_get_all_subusers.yml
|
174
|
+
- spec/cassettes/sub_user/_management/should_update_sub_user.yml
|
175
|
+
- spec/cassettes/sub_user/_monitor_records/should_add_existing_sub_user_to_monitor_record.yml
|
176
|
+
- spec/cassettes/sub_user/_monitor_records/should_create_a_new_monitor_record.yml
|
177
|
+
- spec/cassettes/sub_user/_monitor_records/should_delete_a_monitor_record.yml
|
178
|
+
- spec/cassettes/sub_user/_monitor_records/should_edit_a_monitor_record.yml
|
179
|
+
- spec/cassettes/sub_user/_monitor_records/should_remove_existing_sub_user_from_monitor_record.yml
|
180
|
+
- spec/cassettes/sub_user/_parse_email/should_delete_parse_email.yml
|
181
|
+
- spec/cassettes/sub_user/_parse_email/should_get_parse_email.yml
|
182
|
+
- spec/cassettes/sub_user/_parse_email/should_set_parse_email.yml
|
183
|
+
- spec/cassettes/sub_user/_spam/should_return_spam_mails.yml
|
184
|
+
- spec/cassettes/sub_user/_spam/should_tries_to_delete_unexisting_spam_mail.yml
|
185
|
+
- spec/cassettes/sub_user/_unsubscribes/should_add_bounce_email.yml
|
186
|
+
- spec/cassettes/sub_user/_unsubscribes/should_delete_existing_bounce_email.yml
|
187
|
+
- spec/cassettes/sub_user/_unsubscribes/should_delete_unexisting_bounce_email.yml
|
188
|
+
- spec/cassettes/sub_user/_unsubscribes/should_returns_bounce_emails.yml
|
189
|
+
- spec/client_spec.rb
|
190
|
+
- spec/helper_spec.rb
|
191
|
+
- spec/spec_helper.rb
|
192
|
+
- spec/sub_user_spec.rb
|
193
|
+
homepage: https://github.com/kylejginavan/sendgrid_smtpapi
|
194
|
+
licenses: []
|
195
|
+
|
196
|
+
post_install_message:
|
197
|
+
rdoc_options: []
|
198
|
+
|
199
|
+
require_paths:
|
200
|
+
- lib
|
201
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
202
|
+
none: false
|
203
|
+
requirements:
|
204
|
+
- - ">="
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: "0"
|
207
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
208
|
+
none: false
|
209
|
+
requirements:
|
210
|
+
- - ">="
|
211
|
+
- !ruby/object:Gem::Version
|
212
|
+
version: "0"
|
213
|
+
requirements: []
|
214
|
+
|
215
|
+
rubyforge_project: sendgrid_webapi
|
216
|
+
rubygems_version: 1.8.15
|
217
|
+
signing_key:
|
218
|
+
specification_version: 3
|
219
|
+
summary: SendGrid WEB API gem fo Rails
|
220
|
+
test_files:
|
221
|
+
- spec/cassettes/client/_modules/_block/should_get_block_emails.yml
|
222
|
+
- spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml
|
223
|
+
- spec/cassettes/client/_modules/_bounce/should_get_bounce_emails.yml
|
224
|
+
- spec/cassettes/client/_modules/_bounce/should_try_delete_not_existing_bounce_email.yml
|
225
|
+
- spec/cassettes/client/_modules/_event_notification/should_delete_event_notification_url.yml
|
226
|
+
- spec/cassettes/client/_modules/_event_notification/should_get_event_notification_url.yml
|
227
|
+
- spec/cassettes/client/_modules/_event_notification/should_set_event_notification_url.yml
|
228
|
+
- spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails.yml
|
229
|
+
- spec/cassettes/client/_modules/_invalid_email/should_try_delete_not_existing_invalid_emails.yml
|
230
|
+
- spec/cassettes/client/_modules/_parse_email/should_delete_parse_email.yml
|
231
|
+
- spec/cassettes/client/_modules/_parse_email/should_get_parse_email.yml
|
232
|
+
- spec/cassettes/client/_modules/_parse_email/should_set_parse_email.yml
|
233
|
+
- spec/cassettes/client/_modules/_profile/should_get_profile.yml
|
234
|
+
- spec/cassettes/client/_modules/_profile/should_set_first_name.yml
|
235
|
+
- spec/cassettes/client/_modules/_spam/should_get_spam_emails.yml
|
236
|
+
- spec/cassettes/client/_modules/_spam/should_try_delete_not_existing_spam_emails.yml
|
237
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_add_unsubscribe_emails.yml
|
238
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_delete_unsubscribe_email.yml
|
239
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_get_unsubscribe_emails.yml
|
240
|
+
- spec/cassettes/client/_modules/_unsubscribe/should_try_delete_not_existing_unsubscribe_emails.yml
|
241
|
+
- spec/cassettes/helper/_create_sub_user_account/should_create_sub_user_account.yml
|
242
|
+
- spec/cassettes/helper/_run_sendgrid_query/should_raise_with_unsucessfull_request.yml
|
243
|
+
- spec/cassettes/helper/_run_sendgrid_query/should_run_sendgrid_request.yml
|
244
|
+
- spec/cassettes/sub_user/_apps/should_activate_app.yml
|
245
|
+
- spec/cassettes/sub_user/_apps/should_deactivate_app.yml
|
246
|
+
- spec/cassettes/sub_user/_apps/should_get_current_setting_from_one_app.yml
|
247
|
+
- spec/cassettes/sub_user/_apps/should_return_available_apps.yml
|
248
|
+
- spec/cassettes/sub_user/_apps/should_set_current_app.yml
|
249
|
+
- spec/cassettes/sub_user/_authentication/should_auth_a_sub_user.yml
|
250
|
+
- spec/cassettes/sub_user/_authentication/should_return_error_with_a_bad_sub_user.yml
|
251
|
+
- spec/cassettes/sub_user/_bounces/should_returns_bounce_emails.yml
|
252
|
+
- spec/cassettes/sub_user/_bounces/should_tries_to_delete_unexisting_bounce_emails.yml
|
253
|
+
- spec/cassettes/sub_user/_event_notification/should_add_event_notification_url.yml
|
254
|
+
- spec/cassettes/sub_user/_event_notification/should_delete_event_notification_url.yml
|
255
|
+
- spec/cassettes/sub_user/_event_notification/should_get_event_notification_url.yml
|
256
|
+
- spec/cassettes/sub_user/_invalid_emails/should_return_invalid_emails.yml
|
257
|
+
- spec/cassettes/sub_user/_invalid_emails/should_tries_to_delete_unexisting_invalid_mail.yml
|
258
|
+
- spec/cassettes/sub_user/_ip_management/should_return_all_ips_available.yml
|
259
|
+
- spec/cassettes/sub_user/_ip_management/should_show_ip_subuser.yml
|
260
|
+
- spec/cassettes/sub_user/_limits/should_decrements_credits_for_a_sub_user.yml
|
261
|
+
- spec/cassettes/sub_user/_limits/should_delete_all_limits_for_a_sub_user.yml
|
262
|
+
- spec/cassettes/sub_user/_limits/should_increments_credits_for_a_sub_user.yml
|
263
|
+
- spec/cassettes/sub_user/_limits/should_list_the_limits_for_a_sub_user.yml
|
264
|
+
- spec/cassettes/sub_user/_limits/should_reset_all_limits_for_a_sub_user.yml
|
265
|
+
- spec/cassettes/sub_user/_limits/should_returns_limits_for_a_sub_user.yml
|
266
|
+
- spec/cassettes/sub_user/_limits/should_set_total_credits.yml
|
267
|
+
- spec/cassettes/sub_user/_management/should_add_new_subuser.yml
|
268
|
+
- spec/cassettes/sub_user/_management/should_disable_sub_user_for_send_email.yml
|
269
|
+
- spec/cassettes/sub_user/_management/should_enable_sub_user_for_access_to_website.yml
|
270
|
+
- spec/cassettes/sub_user/_management/should_enable_sub_user_for_send_email.yml
|
271
|
+
- spec/cassettes/sub_user/_management/should_get_all_subusers.yml
|
272
|
+
- spec/cassettes/sub_user/_management/should_update_sub_user.yml
|
273
|
+
- spec/cassettes/sub_user/_monitor_records/should_add_existing_sub_user_to_monitor_record.yml
|
274
|
+
- spec/cassettes/sub_user/_monitor_records/should_create_a_new_monitor_record.yml
|
275
|
+
- spec/cassettes/sub_user/_monitor_records/should_delete_a_monitor_record.yml
|
276
|
+
- spec/cassettes/sub_user/_monitor_records/should_edit_a_monitor_record.yml
|
277
|
+
- spec/cassettes/sub_user/_monitor_records/should_remove_existing_sub_user_from_monitor_record.yml
|
278
|
+
- spec/cassettes/sub_user/_parse_email/should_delete_parse_email.yml
|
279
|
+
- spec/cassettes/sub_user/_parse_email/should_get_parse_email.yml
|
280
|
+
- spec/cassettes/sub_user/_parse_email/should_set_parse_email.yml
|
281
|
+
- spec/cassettes/sub_user/_spam/should_return_spam_mails.yml
|
282
|
+
- spec/cassettes/sub_user/_spam/should_tries_to_delete_unexisting_spam_mail.yml
|
283
|
+
- spec/cassettes/sub_user/_unsubscribes/should_add_bounce_email.yml
|
284
|
+
- spec/cassettes/sub_user/_unsubscribes/should_delete_existing_bounce_email.yml
|
285
|
+
- spec/cassettes/sub_user/_unsubscribes/should_delete_unexisting_bounce_email.yml
|
286
|
+
- spec/cassettes/sub_user/_unsubscribes/should_returns_bounce_emails.yml
|
287
|
+
- spec/client_spec.rb
|
288
|
+
- spec/helper_spec.rb
|
289
|
+
- spec/spec_helper.rb
|
290
|
+
- spec/sub_user_spec.rb
|