solidus_mailchimp_sync 1.0.0.beta01 → 1.0.0.beta02
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e23d7cd3b7472f34bbfd7b8654b4fe1968887eb7
|
4
|
+
data.tar.gz: 7101a2aab52bdd5eba40de6f5b7c5c1f5d8c5ecd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2ea93fae4945a1248f2356516d9a3362e8d59f4a392f814d22428f7e6f71c8dff31bfcbeb75858221175f96e04fd476a9afc92b2546674373fd7c73cf6f7d40
|
7
|
+
data.tar.gz: 538504be690579e4e7b5760c8b4d2bc55ab149af9c18d22af95ed672ec0107ec6cf2af9fd611900c6f05aef32712dccddabd1d678eaab7083cd78bb5c731a062
|
data/README.md
CHANGED
@@ -67,7 +67,7 @@ could take a while:
|
|
67
67
|
RAILS_ENV=production rake solidus_mailchimp_sync:bulk_sync
|
68
68
|
|
69
69
|
Known issues/To do
|
70
|
-
|
70
|
+
------------------
|
71
71
|
|
72
72
|
* If a user changes their email addresses, their old orders may be no longer associated with
|
73
73
|
them in mailchimp, they will wind up with two mailchimp customer records. (Mailchimp
|
@@ -78,6 +78,17 @@ Known issues/To do
|
|
78
78
|
Have an idea for an implementation debounce feature that could debounce/coalesce mailchimp
|
79
79
|
syncs in the general case.
|
80
80
|
|
81
|
+
Maintenance Expectations
|
82
|
+
------------------------
|
83
|
+
|
84
|
+
We've develoepd this for our own clients needs. We are sharing it with the intention
|
85
|
+
of sharing/collaborating with other developers, so they don't have to re-invent
|
86
|
+
the wheel.
|
87
|
+
|
88
|
+
We think this is solid and reliable code, but our future ability to attend to
|
89
|
+
any maintenance or development will depend on our time and clients needs. We
|
90
|
+
will do our best to respond to PR'.
|
91
|
+
|
81
92
|
Testing
|
82
93
|
-------
|
83
94
|
|
@@ -47,7 +47,7 @@ module SolidusMailchimpSync
|
|
47
47
|
|
48
48
|
# Override in custom serializer if you want to choose which image different than `first`
|
49
49
|
def image_url
|
50
|
-
(variant.images.first || variant.product.images.first).try(:url)
|
50
|
+
(variant.images.first || variant.product.images.first).try(:attachment).try(:url)
|
51
51
|
end
|
52
52
|
|
53
53
|
# Override for custom visibility. Mailchimp wants a string for some reason,
|