twiml_template 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/twiml_template/version.rb +1 -1
- data/twiml_template.gemspec +1 -1
- metadata +11 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b35b1c70488737f56067beecc1f39188d248dc3
|
4
|
+
data.tar.gz: f02cbe971345617ff82fc56852765741d8bb69ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac28e65bd4a373d16ca53297cee5c50023b19f5cf2b3b40018548814ee6a2cb0975cd25354f58ae7a56753ed4913f773ad465941c8cd290f207245c5b69a8136
|
7
|
+
data.tar.gz: f905e30099bacef5deb39601c7b526d4520921b3f3e4b32c30a65325f791b70ae84927131cc58bba6742d7cec32b075b1791b348251be894437d4573aee61d90
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
An easy way to work with TwiML for responding to [Twilio](http://twilio.com) webhooks in Rails or Sinatra applications using template files.
|
6
6
|
|
7
|
-
[![Build Status](https://travis-ci.org/philnash/twiml_template.svg)](https://travis-ci.org/philnash/twiml_template)[![Code Climate](https://codeclimate.com/github/philnash/twiml_template/badges/gpa.svg)](https://codeclimate.com/github/philnash/twiml_template)
|
7
|
+
[![Build Status](https://travis-ci.org/philnash/twiml_template.svg)](https://travis-ci.org/philnash/twiml_template) [![Code Climate](https://codeclimate.com/github/philnash/twiml_template/badges/gpa.svg)](https://codeclimate.com/github/philnash/twiml_template)
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
@@ -54,7 +54,7 @@ And then add your TwiML view:
|
|
54
54
|
twiml.Say "Hello #{@name}"
|
55
55
|
```
|
56
56
|
|
57
|
-
Save the file as `#{RAILS_ROOT}/app/
|
57
|
+
Save the file as `#{RAILS_ROOT}/app/views/voice/index.twiml`.
|
58
58
|
|
59
59
|
Run the app using `rails s` and visit [http://localhost:3000/voice](http://localhost:3000/voice) and you will see:
|
60
60
|
|
data/twiml_template.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.required_ruby_version = '>= 1.9.3'
|
21
21
|
|
22
22
|
spec.add_dependency "tilt", ">= 1.3", "< 2.0"
|
23
|
-
spec.add_dependency "twilio-ruby", "
|
23
|
+
spec.add_dependency "twilio-ruby", ">= 3.0", "< 5.0"
|
24
24
|
|
25
25
|
spec.add_development_dependency "bundler", "~> 1.7"
|
26
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twiml_template
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phil Nash
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tilt
|
@@ -34,16 +34,22 @@ dependencies:
|
|
34
34
|
name: twilio-ruby
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
37
|
+
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '3.0'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '5.0'
|
40
43
|
type: :runtime
|
41
44
|
prerelease: false
|
42
45
|
version_requirements: !ruby/object:Gem::Requirement
|
43
46
|
requirements:
|
44
|
-
- - "
|
47
|
+
- - ">="
|
45
48
|
- !ruby/object:Gem::Version
|
46
49
|
version: '3.0'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '5.0'
|
47
53
|
- !ruby/object:Gem::Dependency
|
48
54
|
name: bundler
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -159,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
165
|
version: '0'
|
160
166
|
requirements: []
|
161
167
|
rubyforge_project:
|
162
|
-
rubygems_version: 2.
|
168
|
+
rubygems_version: 2.4.5
|
163
169
|
signing_key:
|
164
170
|
specification_version: 4
|
165
171
|
summary: TwiML templates for Rails and Tilt.
|
@@ -168,4 +174,3 @@ test_files:
|
|
168
174
|
- spec/sinatra/views/hello.twiml
|
169
175
|
- spec/spec_helper.rb
|
170
176
|
- spec/tilt/twiml_spec.rb
|
171
|
-
has_rdoc:
|