twilio_contactable 0.8.8 → 0.8.9
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/LICENSE +20 -0
- data/VERSION +1 -1
- data/twilio_contactable.gemspec +26 -26
- metadata +20 -7
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2011 Jack Danger Canty
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.9
|
data/twilio_contactable.gemspec
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{twilio_contactable}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.9"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jack Danger Canty"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-04-10}
|
|
13
13
|
s.description = %q{Does all the hard work with letting you confirm your user's phone numbers for Voice or TXT over the Twilio API}
|
|
14
14
|
s.email = %q{gitcommit@6brand.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
16
17
|
"README.markdown"
|
|
17
18
|
]
|
|
18
19
|
s.files = [
|
|
20
|
+
"LICENSE",
|
|
19
21
|
"MIT-LICENSE",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
22
|
+
"README.markdown",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"init.rb",
|
|
26
|
+
"lib/configuration.rb",
|
|
27
|
+
"lib/contactable.rb",
|
|
28
|
+
"lib/controller.rb",
|
|
29
|
+
"lib/gateway.rb",
|
|
30
|
+
"lib/twilio_contactable.rb",
|
|
31
|
+
"test/.gitignore",
|
|
32
|
+
"test/database.yml",
|
|
33
|
+
"test/test_helper.rb",
|
|
34
|
+
"test/twilio_contactable_contactable_test.rb",
|
|
35
|
+
"test/twilio_contactable_controller_test.rb",
|
|
36
|
+
"test/twilio_module_test.rb",
|
|
37
|
+
"twilio_contactable.gemspec"
|
|
36
38
|
]
|
|
37
39
|
s.homepage = %q{http://github.com/JackDanger/twilio_contactable}
|
|
38
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
39
40
|
s.require_paths = ["lib"]
|
|
40
|
-
s.rubygems_version = %q{1.
|
|
41
|
+
s.rubygems_version = %q{1.4.2}
|
|
41
42
|
s.summary = %q{Help authorize the users of your Rails apps to confirm and use their phone numbers}
|
|
42
43
|
s.test_files = [
|
|
43
44
|
"test/test_helper.rb",
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
"test/twilio_contactable_contactable_test.rb",
|
|
46
|
+
"test/twilio_contactable_controller_test.rb",
|
|
47
|
+
"test/twilio_module_test.rb"
|
|
47
48
|
]
|
|
48
49
|
|
|
49
50
|
if s.respond_to? :specification_version then
|
|
50
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
51
51
|
s.specification_version = 3
|
|
52
52
|
|
|
53
|
-
if Gem::Version.new(Gem::
|
|
53
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
54
54
|
s.add_runtime_dependency(%q<twiliolib>, [">= 2.0.5"])
|
|
55
55
|
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
|
56
56
|
s.add_development_dependency(%q<mocha>, [">= 0"])
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twilio_contactable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 45
|
|
5
|
+
prerelease:
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 8
|
|
8
|
-
-
|
|
9
|
-
version: 0.8.
|
|
9
|
+
- 9
|
|
10
|
+
version: 0.8.9
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Jack Danger Canty
|
|
@@ -14,16 +15,18 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date:
|
|
18
|
+
date: 2011-04-10 00:00:00 -07:00
|
|
18
19
|
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: twiliolib
|
|
22
23
|
prerelease: false
|
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
24
26
|
requirements:
|
|
25
27
|
- - ">="
|
|
26
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 5
|
|
27
30
|
segments:
|
|
28
31
|
- 2
|
|
29
32
|
- 0
|
|
@@ -35,9 +38,11 @@ dependencies:
|
|
|
35
38
|
name: shoulda
|
|
36
39
|
prerelease: false
|
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
38
42
|
requirements:
|
|
39
43
|
- - ">="
|
|
40
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 3
|
|
41
46
|
segments:
|
|
42
47
|
- 0
|
|
43
48
|
version: "0"
|
|
@@ -47,9 +52,11 @@ dependencies:
|
|
|
47
52
|
name: mocha
|
|
48
53
|
prerelease: false
|
|
49
54
|
requirement: &id003 !ruby/object:Gem::Requirement
|
|
55
|
+
none: false
|
|
50
56
|
requirements:
|
|
51
57
|
- - ">="
|
|
52
58
|
- !ruby/object:Gem::Version
|
|
59
|
+
hash: 3
|
|
53
60
|
segments:
|
|
54
61
|
- 0
|
|
55
62
|
version: "0"
|
|
@@ -62,8 +69,10 @@ executables: []
|
|
|
62
69
|
extensions: []
|
|
63
70
|
|
|
64
71
|
extra_rdoc_files:
|
|
72
|
+
- LICENSE
|
|
65
73
|
- README.markdown
|
|
66
74
|
files:
|
|
75
|
+
- LICENSE
|
|
67
76
|
- MIT-LICENSE
|
|
68
77
|
- README.markdown
|
|
69
78
|
- Rakefile
|
|
@@ -86,28 +95,32 @@ homepage: http://github.com/JackDanger/twilio_contactable
|
|
|
86
95
|
licenses: []
|
|
87
96
|
|
|
88
97
|
post_install_message:
|
|
89
|
-
rdoc_options:
|
|
90
|
-
|
|
98
|
+
rdoc_options: []
|
|
99
|
+
|
|
91
100
|
require_paths:
|
|
92
101
|
- lib
|
|
93
102
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
|
+
none: false
|
|
94
104
|
requirements:
|
|
95
105
|
- - ">="
|
|
96
106
|
- !ruby/object:Gem::Version
|
|
107
|
+
hash: 3
|
|
97
108
|
segments:
|
|
98
109
|
- 0
|
|
99
110
|
version: "0"
|
|
100
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
|
+
none: false
|
|
101
113
|
requirements:
|
|
102
114
|
- - ">="
|
|
103
115
|
- !ruby/object:Gem::Version
|
|
116
|
+
hash: 3
|
|
104
117
|
segments:
|
|
105
118
|
- 0
|
|
106
119
|
version: "0"
|
|
107
120
|
requirements: []
|
|
108
121
|
|
|
109
122
|
rubyforge_project:
|
|
110
|
-
rubygems_version: 1.
|
|
123
|
+
rubygems_version: 1.4.2
|
|
111
124
|
signing_key:
|
|
112
125
|
specification_version: 3
|
|
113
126
|
summary: Help authorize the users of your Rails apps to confirm and use their phone numbers
|