devise_campaignable 0.1.0 → 0.1.1
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 +1 -1
- data/devise_campaignable.gemspec +1 -1
- data/lib/devise_campaignable/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: daf89819dba50b5d7e703bfa070061817c2e48db
|
|
4
|
+
data.tar.gz: 4b00b9c8067dc9bda6e7130df83a9727c2a1fc93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cae27bc83a46707fe46d99266cdd0b2c3d26ad07f60adae178b19b6f623ddb36c1761a9ee5b85ddbdf930bc5e4bd2f6c6b2614e19c3265d3e5052160d443ffe7
|
|
7
|
+
data.tar.gz: e4dcfa502a404ec130fa83ae9dc0e07dc3a055e5fc9631cf298428bfef6020059f32ada6d37f22b00a6e957859bcf8a275cc9dcffcbc2b18e2b350a1e5997f15
|
data/README.md
CHANGED
|
@@ -22,7 +22,7 @@ DeviseCampaignable adds a few configuration variables which you'll need to add t
|
|
|
22
22
|
```ruby
|
|
23
23
|
Devise.setup do |config|
|
|
24
24
|
# ==> Configuration for :campaignable
|
|
25
|
-
config.campaignable_vendor = :
|
|
25
|
+
config.campaignable_vendor = :mailchimp
|
|
26
26
|
config.campaignable_api_key = 'your_service_api_key'
|
|
27
27
|
config.campaignable_list_id = 'the_id_of_the_list_to_which_we_subscribe'
|
|
28
28
|
config.campaignable_additional_fields = [:array, :of, :additional, :fields]
|
data/devise_campaignable.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise_campaignable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Rawlins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -70,16 +70,16 @@ dependencies:
|
|
|
70
70
|
name: gibbon
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- - "
|
|
73
|
+
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 1.1
|
|
75
|
+
version: '1.1'
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
|
-
- - "
|
|
80
|
+
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 1.1
|
|
82
|
+
version: '1.1'
|
|
83
83
|
description: Inspired by the now slightly out of date devise_mailchimp this gem works
|
|
84
84
|
in a similar fashion but with a focus on multi-vendor support, rather than exclusively
|
|
85
85
|
MailChimp.
|