pushpop-twilio 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.
data/Gemfile CHANGED
@@ -6,5 +6,4 @@ gem 'twilio-ruby'
6
6
  group :development, :test do
7
7
  gem 'rake'
8
8
  gem 'rspec'
9
- gem 'mail'
10
9
  end
data/Gemfile.lock CHANGED
@@ -7,7 +7,6 @@ GEM
7
7
  minitest (~> 5.1)
8
8
  thread_safe (~> 0.1)
9
9
  tzinfo (~> 1.1)
10
- addressable (2.3.6)
11
10
  builder (3.2.2)
12
11
  clockwork (0.7.5)
13
12
  activesupport
@@ -16,17 +15,10 @@ GEM
16
15
  i18n (0.6.9)
17
16
  json (1.8.1)
18
17
  jwt (1.0.0)
19
- keen (0.8.2)
20
- addressable (~> 2.3.5)
21
- multi_json (~> 1.3)
22
- mail (2.6.1)
23
- mime-types (>= 1.16, < 3)
24
- mime-types (2.3)
25
18
  minitest (5.3.4)
26
19
  multi_json (1.10.1)
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)
@@ -52,7 +44,6 @@ PLATFORMS
52
44
  ruby
53
45
 
54
46
  DEPENDENCIES
55
- mail
56
47
  pushpop
57
48
  rake
58
49
  rspec
data/README.md CHANGED
@@ -23,6 +23,8 @@ The `twilio` plugin provides a DSL to specify SMS recipient information as well
23
23
  Here's an example:
24
24
 
25
25
  ``` ruby
26
+ require 'pushpop-twilio'
27
+
26
28
  job 'send a text' do
27
29
 
28
30
  twilio do
@@ -44,6 +46,8 @@ The `twilio` plugin requires that the following environment variables are set:
44
46
  If you need a lower level interface to Twilio functionality, use the `send_message` method exposed by the plugin directly. Here's an example:
45
47
 
46
48
  ``` ruby
49
+ require 'pushpop-twilio'
50
+
47
51
  job 'send a few texts' do
48
52
 
49
53
  twilio do
@@ -1,5 +1,5 @@
1
1
  module Pushpop
2
2
  class Twilio
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pushpop-twilio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -59,7 +59,6 @@ files:
59
59
  - lib/pushpop-twilio/version.rb
60
60
  - pushpop-twilio.gemspec
61
61
  - spec/pushpop-twilio_spec.rb
62
- - spec/spec.html.erb
63
62
  - spec/spec_helper.rb
64
63
  homepage: https://github.com/pushpop-project/pushpop-twilio
65
64
  licenses: []
@@ -87,5 +86,4 @@ specification_version: 3
87
86
  summary: Twilio plugin for sending SMS messages from Pushpop
88
87
  test_files:
89
88
  - spec/pushpop-twilio_spec.rb
90
- - spec/spec.html.erb
91
89
  - spec/spec_helper.rb
data/spec/spec.html.erb DELETED
@@ -1,6 +0,0 @@
1
- <% if response %>
2
- <pre><%= response %></pre>
3
- <% else %>
4
- <pre><%= step_responses[:test] %></pre>
5
- <% end %>
6
-