twilioauth 0.0.1 → 0.0.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/.gitignore +2 -1
- data/Gemfile.lock +2 -2
- data/README.md +18 -0
- data/twilioauth.gemspec +3 -3
- metadata +6 -5
data/.gitignore
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
twilioauth.yml
|
|
1
|
+
twilioauth.yml
|
|
2
|
+
*.gem
|
data/Gemfile.lock
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
About
|
|
2
|
+
=====
|
|
3
|
+
|
|
4
|
+
Simple 2 factor authentication with Twilio sms.
|
|
5
|
+
|
|
6
|
+
Usage
|
|
7
|
+
----------
|
|
8
|
+
|
|
9
|
+
``` ruby
|
|
10
|
+
require "twilioauth"
|
|
11
|
+
twilio = Twilioauth.auth("+15555555555", :account_sid => "*************", :auth_token => "****************")
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
History
|
|
15
|
+
----------
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
0.0.1 first working sms auth.
|
data/twilioauth.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $:.unshift lib unless $:.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'twilioauth'
|
|
6
|
-
s.version = '0.0.
|
|
6
|
+
s.version = '0.0.2'
|
|
7
7
|
s.date = '2012-08-08'
|
|
8
8
|
s.summary = "2 factor auth for twilio"
|
|
9
9
|
s.description = "2 factor auth for twilio"
|
|
@@ -17,10 +17,10 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.require_path = 'lib'
|
|
18
18
|
|
|
19
19
|
s.requirements << "twilio-ruby"
|
|
20
|
-
s.requirements << "
|
|
20
|
+
s.requirements << "activesupport"
|
|
21
21
|
|
|
22
22
|
s.add_dependency "twilio-ruby"
|
|
23
|
-
s.add_dependency "
|
|
23
|
+
s.add_dependency "activesupport", ">= 3.0.0"
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twilioauth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -28,13 +28,13 @@ dependencies:
|
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0'
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
|
-
name:
|
|
31
|
+
name: activesupport
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
33
33
|
none: false
|
|
34
34
|
requirements:
|
|
35
35
|
- - ! '>='
|
|
36
36
|
- !ruby/object:Gem::Version
|
|
37
|
-
version:
|
|
37
|
+
version: 3.0.0
|
|
38
38
|
type: :runtime
|
|
39
39
|
prerelease: false
|
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -42,7 +42,7 @@ dependencies:
|
|
|
42
42
|
requirements:
|
|
43
43
|
- - ! '>='
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version:
|
|
45
|
+
version: 3.0.0
|
|
46
46
|
description: 2 factor auth for twilio
|
|
47
47
|
email: kmahan@kmahan.com
|
|
48
48
|
executables: []
|
|
@@ -53,6 +53,7 @@ files:
|
|
|
53
53
|
- .rvmrc
|
|
54
54
|
- Gemfile
|
|
55
55
|
- Gemfile.lock
|
|
56
|
+
- README.md
|
|
56
57
|
- lib/twilioauth.rb
|
|
57
58
|
- twilioauth.gemspec
|
|
58
59
|
homepage: http://rubygems.org/gems/twilioauth
|
|
@@ -75,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
76
|
version: '0'
|
|
76
77
|
requirements:
|
|
77
78
|
- twilio-ruby
|
|
78
|
-
-
|
|
79
|
+
- activesupport
|
|
79
80
|
rubyforge_project:
|
|
80
81
|
rubygems_version: 1.8.24
|
|
81
82
|
signing_key:
|