maropost 0.5.0 → 0.6.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 +2 -2
- data/lib/maropost/api.rb +2 -2
- data/lib/maropost/contact.rb +6 -0
- data/lib/maropost/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 41defb7d262138dbba118f97eff436b079e10e2e
|
|
4
|
+
data.tar.gz: 76b093084e65ef9686eac90049407218934ee468
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab2429412117bf810f855ee73d2261881a68149d79b3b2419f9d9ac9b09eb369327e863b83146b8d182136adc01b6b99371132a515227d3e91a516117a7c5c64
|
|
7
|
+
data.tar.gz: a6934327a2cd254863573f4132fef86ff446477342a2f90d6f43c28fa139f19477284f8474e59bd708d1ca5a3bd9b699fb8de674be96c8cf426060a7292d0033
|
data/README.md
CHANGED
|
@@ -32,6 +32,7 @@ To create or update a contact in Maropost:
|
|
|
32
32
|
Maropost::Api.update_subscriptions(
|
|
33
33
|
Maropost::Contact.new(
|
|
34
34
|
email: email,
|
|
35
|
+
do_not_contact: false, # or possibly true to opt in to the DoNotMailList
|
|
35
36
|
ama_rewards: ama_rewards,
|
|
36
37
|
ama_membership: ama_membership,
|
|
37
38
|
ama_insurance: ama_insurance,
|
|
@@ -45,7 +46,7 @@ To create or update a contact in Maropost:
|
|
|
45
46
|
ama_vr_reminder_email: ama_vr_reminder_email,
|
|
46
47
|
ama_vr_reminder_sms: ama_vr_reminder_sms,
|
|
47
48
|
ama_vr_reminder_autocall: ama_vr_reminder_autocall,
|
|
48
|
-
cell_phone_number: cell_phone_number
|
|
49
|
+
cell_phone_number: cell_phone_number,
|
|
49
50
|
phone: phone_number
|
|
50
51
|
)
|
|
51
52
|
)
|
|
@@ -65,4 +66,3 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/amaabc
|
|
|
65
66
|
## License
|
|
66
67
|
|
|
67
68
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
68
|
-
|
data/lib/maropost/api.rb
CHANGED
|
@@ -20,11 +20,11 @@ module Maropost
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def update_subscriptions(contact)
|
|
23
|
+
update_do_not_mail_list(contact)
|
|
23
24
|
to_maropost(
|
|
24
25
|
find(contact.email),
|
|
25
26
|
contact
|
|
26
27
|
)
|
|
27
|
-
update_do_not_mail_list(contact)
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def create(contact)
|
|
@@ -75,7 +75,7 @@ module Maropost
|
|
|
75
75
|
end
|
|
76
76
|
|
|
77
77
|
def update_do_not_mail_list(contact)
|
|
78
|
-
if contact.subscribed_to_any_lists?
|
|
78
|
+
if contact.allow_emails? && contact.subscribed_to_any_lists?
|
|
79
79
|
DoNotMailList.delete(contact)
|
|
80
80
|
else
|
|
81
81
|
DoNotMailList.create(contact)
|
data/lib/maropost/contact.rb
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
module Maropost
|
|
4
4
|
class Contact
|
|
5
5
|
ATTRIBUTES = %i[
|
|
6
|
+
do_not_contact
|
|
6
7
|
id
|
|
7
8
|
email
|
|
8
9
|
phone_number
|
|
@@ -34,11 +35,16 @@ module Maropost
|
|
|
34
35
|
self.email = data[:email]
|
|
35
36
|
self.phone_number = data[:phone]
|
|
36
37
|
self.cell_phone_number = data[:cell_phone_number]
|
|
38
|
+
self.do_not_contact = data.fetch(:do_not_contact, false)
|
|
37
39
|
self.errors = []
|
|
38
40
|
self.lists = {}
|
|
39
41
|
initialize_lists(data)
|
|
40
42
|
end
|
|
41
43
|
|
|
44
|
+
def allow_emails?
|
|
45
|
+
@allow_emails ||= email.present? && !do_not_contact && !DoNotMailList.exists?(self)
|
|
46
|
+
end
|
|
47
|
+
|
|
42
48
|
def subscribed_to_any_lists?
|
|
43
49
|
lists.values.any? { |v| v == '1' }
|
|
44
50
|
end
|
data/lib/maropost/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: maropost
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael van den Beuken
|
|
@@ -19,7 +19,7 @@ authors:
|
|
|
19
19
|
autorequire:
|
|
20
20
|
bindir: bin
|
|
21
21
|
cert_chain: []
|
|
22
|
-
date: 2017-10-
|
|
22
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
|
23
23
|
dependencies:
|
|
24
24
|
- !ruby/object:Gem::Dependency
|
|
25
25
|
name: rest-client
|