twilio-twimlbin 0.0.2 → 0.0.3
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 +1 -1
- data/README.md +8 -2
- data/lib/twilio-twimlbin.rb +1 -0
- data/twilio-twimlbin.gemspec +1 -1
- metadata +2 -2
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -23,13 +23,19 @@ response = Twilio::TwiML::Response.new do |r|
|
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
twiml = Twimlbin.new
|
|
26
|
-
|
|
27
|
-
puts url
|
|
26
|
+
twiml.create(response.text)
|
|
27
|
+
puts twiml.external_url # print public url
|
|
28
|
+
puts twiml.private_url # print editable url
|
|
28
29
|
`````
|
|
29
30
|
|
|
30
31
|
## TODO
|
|
31
32
|
Pull requests are very welcome!!
|
|
32
33
|
|
|
34
|
+
## Articles
|
|
35
|
+
|
|
36
|
+
* Twilioのマークアップ言語TwiMLを無料ホスティングするサービス「twimlbin」をRubyから利用する「twilio-twimlbin」を公開しました
|
|
37
|
+
http://y-ken.hatenablog.com/entry/twilio-twimlbin-gem-has-released
|
|
38
|
+
|
|
33
39
|
## Copyright
|
|
34
40
|
Copyright © 2013- Kentaro Yoshida ([@yoshi_ken](https://twitter.com/yoshi_ken))
|
|
35
41
|
|
data/lib/twilio-twimlbin.rb
CHANGED
data/twilio-twimlbin.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "twilio-twimlbin"
|
|
6
|
-
s.version = "0.0.
|
|
6
|
+
s.version = "0.0.3"
|
|
7
7
|
s.authors = ["Kentaro Yoshida"]
|
|
8
8
|
s.email = ["y.ken.studio@gmail.com"]
|
|
9
9
|
s.homepage = "https://github.com/y-ken/twimlbin"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twilio-twimlbin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-07-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|