pushpop-sendgrid 0.1.1 → 0.1.2
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.
- data/Gemfile +0 -1
- data/Gemfile.lock +1 -14
- data/README.md +5 -1
- data/lib/pushpop-sendgrid/version.rb +1 -1
- metadata +1 -1
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -7,26 +7,18 @@ GEM
|
|
|
7
7
|
minitest (~> 5.1)
|
|
8
8
|
thread_safe (~> 0.1)
|
|
9
9
|
tzinfo (~> 1.1)
|
|
10
|
-
addressable (2.3.6)
|
|
11
|
-
builder (3.2.2)
|
|
12
10
|
clockwork (0.7.5)
|
|
13
11
|
activesupport
|
|
14
12
|
tzinfo
|
|
15
13
|
diff-lcs (1.2.5)
|
|
16
14
|
i18n (0.6.9)
|
|
17
15
|
json (1.8.1)
|
|
18
|
-
jwt (1.0.0)
|
|
19
|
-
keen (0.8.2)
|
|
20
|
-
addressable (~> 2.3.5)
|
|
21
|
-
multi_json (~> 1.3)
|
|
22
16
|
mail (2.6.1)
|
|
23
17
|
mime-types (>= 1.16, < 3)
|
|
24
18
|
mime-types (2.3)
|
|
25
19
|
minitest (5.3.4)
|
|
26
|
-
|
|
27
|
-
pushpop (0.1.0)
|
|
20
|
+
pushpop (0.1.1)
|
|
28
21
|
clockwork
|
|
29
|
-
keen
|
|
30
22
|
rake (10.3.2)
|
|
31
23
|
rspec (3.0.0)
|
|
32
24
|
rspec-core (~> 3.0.0)
|
|
@@ -41,10 +33,6 @@ GEM
|
|
|
41
33
|
rspec-support (~> 3.0.0)
|
|
42
34
|
rspec-support (3.0.0)
|
|
43
35
|
thread_safe (0.3.4)
|
|
44
|
-
twilio-ruby (3.11.5)
|
|
45
|
-
builder (>= 2.1.2)
|
|
46
|
-
jwt (>= 0.1.2)
|
|
47
|
-
multi_json (>= 1.3.0)
|
|
48
36
|
tzinfo (1.2.1)
|
|
49
37
|
thread_safe (~> 0.1)
|
|
50
38
|
|
|
@@ -56,4 +44,3 @@ DEPENDENCIES
|
|
|
56
44
|
pushpop
|
|
57
45
|
rake
|
|
58
46
|
rspec
|
|
59
|
-
twilio-ruby
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## pushpop-sendgrid
|
|
2
2
|
|
|
3
|
-
Sendgrid plugin for [Pushpop](https://github.com/
|
|
3
|
+
Sendgrid plugin for [Pushpop](https://github.com/pushpop-project/pushpop).
|
|
4
4
|
|
|
5
5
|
### Installation
|
|
6
6
|
|
|
@@ -23,6 +23,8 @@ The `sendgrid` plugin gives you a DSL to specify typical email parameters.
|
|
|
23
23
|
Here's an example:
|
|
24
24
|
|
|
25
25
|
``` ruby
|
|
26
|
+
require 'pushpop-sendgrid'
|
|
27
|
+
|
|
26
28
|
job 'send an email' do
|
|
27
29
|
|
|
28
30
|
sendgrid do
|
|
@@ -61,6 +63,8 @@ Need to send multiple emails in one step? Need more control over email sending?
|
|
|
61
63
|
Instead, use the `send_email` method exposed by the plugin directly. Here's an example:
|
|
62
64
|
|
|
63
65
|
``` ruby
|
|
66
|
+
require 'pushpop-sendgrid'
|
|
67
|
+
|
|
64
68
|
job 'send multiple emails' do
|
|
65
69
|
|
|
66
70
|
step 'send some emails' do
|