mailshake-ruby 0.1.0 → 0.2.0
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 +80 -19
- data/lib/mailshake/activity.rb +14 -7
- data/lib/mailshake/campaigns.rb +10 -5
- data/lib/mailshake/client.rb +2 -1
- data/lib/mailshake/leads.rb +6 -3
- data/lib/mailshake/models/add_recipients_request.rb +8 -0
- data/lib/mailshake/models/added_recipients.rb +8 -0
- data/lib/mailshake/models/base_model.rb +79 -0
- data/lib/mailshake/models/campaign.rb +10 -0
- data/lib/mailshake/models/campaign_export.rb +8 -0
- data/lib/mailshake/models/campaign_export_request.rb +8 -0
- data/lib/mailshake/models/click.rb +11 -0
- data/lib/mailshake/models/created_leads.rb +8 -0
- data/lib/mailshake/models/lead.rb +11 -0
- data/lib/mailshake/models/lead_status.rb +8 -0
- data/lib/mailshake/models/list.rb +30 -0
- data/lib/mailshake/models/message.rb +8 -0
- data/lib/mailshake/models/open.rb +11 -0
- data/lib/mailshake/models/recipient.rb +8 -0
- data/lib/mailshake/models/reply.rb +11 -0
- data/lib/mailshake/models/sender.rb +8 -0
- data/lib/mailshake/models/sent_message.rb +11 -0
- data/lib/mailshake/models/user.rb +8 -0
- data/lib/mailshake/recipients.rb +8 -4
- data/lib/mailshake/senders.rb +2 -1
- data/lib/mailshake/team.rb +2 -1
- data/lib/mailshake.rb +21 -0
- data/spec/examples.txt +86 -60
- data/spec/mailshake/activity_spec.rb +4 -2
- data/spec/mailshake/campaigns_spec.rb +10 -4
- data/spec/mailshake/client_spec.rb +1 -0
- data/spec/mailshake/leads_spec.rb +5 -2
- data/spec/mailshake/models/base_model_spec.rb +118 -0
- data/spec/mailshake/models/list_spec.rb +103 -0
- data/spec/mailshake/push_spec.rb +1 -0
- data/spec/mailshake/recipients_spec.rb +7 -3
- data/spec/mailshake/senders_spec.rb +2 -1
- data/spec/mailshake/team_spec.rb +2 -1
- metadata +24 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mailshake-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo Souza
|
|
@@ -128,6 +128,24 @@ files:
|
|
|
128
128
|
- lib/mailshake/configuration.rb
|
|
129
129
|
- lib/mailshake/errors.rb
|
|
130
130
|
- lib/mailshake/leads.rb
|
|
131
|
+
- lib/mailshake/models/add_recipients_request.rb
|
|
132
|
+
- lib/mailshake/models/added_recipients.rb
|
|
133
|
+
- lib/mailshake/models/base_model.rb
|
|
134
|
+
- lib/mailshake/models/campaign.rb
|
|
135
|
+
- lib/mailshake/models/campaign_export.rb
|
|
136
|
+
- lib/mailshake/models/campaign_export_request.rb
|
|
137
|
+
- lib/mailshake/models/click.rb
|
|
138
|
+
- lib/mailshake/models/created_leads.rb
|
|
139
|
+
- lib/mailshake/models/lead.rb
|
|
140
|
+
- lib/mailshake/models/lead_status.rb
|
|
141
|
+
- lib/mailshake/models/list.rb
|
|
142
|
+
- lib/mailshake/models/message.rb
|
|
143
|
+
- lib/mailshake/models/open.rb
|
|
144
|
+
- lib/mailshake/models/recipient.rb
|
|
145
|
+
- lib/mailshake/models/reply.rb
|
|
146
|
+
- lib/mailshake/models/sender.rb
|
|
147
|
+
- lib/mailshake/models/sent_message.rb
|
|
148
|
+
- lib/mailshake/models/user.rb
|
|
131
149
|
- lib/mailshake/push.rb
|
|
132
150
|
- lib/mailshake/recipients.rb
|
|
133
151
|
- lib/mailshake/senders.rb
|
|
@@ -139,6 +157,8 @@ files:
|
|
|
139
157
|
- spec/mailshake/client_spec.rb
|
|
140
158
|
- spec/mailshake/configuration_spec.rb
|
|
141
159
|
- spec/mailshake/leads_spec.rb
|
|
160
|
+
- spec/mailshake/models/base_model_spec.rb
|
|
161
|
+
- spec/mailshake/models/list_spec.rb
|
|
142
162
|
- spec/mailshake/push_spec.rb
|
|
143
163
|
- spec/mailshake/recipients_spec.rb
|
|
144
164
|
- spec/mailshake/senders_spec.rb
|
|
@@ -148,9 +168,11 @@ homepage: https://github.com/esouza/mailshake-ruby
|
|
|
148
168
|
licenses:
|
|
149
169
|
- MIT
|
|
150
170
|
metadata:
|
|
171
|
+
allowed_push_host: https://rubygems.org
|
|
151
172
|
homepage_uri: https://github.com/esouza/mailshake-ruby
|
|
152
173
|
source_code_uri: https://github.com/esouza/mailshake-ruby
|
|
153
|
-
changelog_uri: https://github.com/esouza/mailshake-ruby/blob/
|
|
174
|
+
changelog_uri: https://github.com/esouza/mailshake-ruby/blob/master/CHANGELOG.md
|
|
175
|
+
bug_tracker_uri: https://github.com/esouza/mailshake-ruby/issues
|
|
154
176
|
post_install_message:
|
|
155
177
|
rdoc_options: []
|
|
156
178
|
require_paths:
|