simple_oauth 0.1.3 → 0.1.4
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/.gemtest +0 -0
- data/.gitignore +1 -0
- data/lib/simple_oauth/version.rb +1 -1
- metadata +7 -23
- data/Gemfile.lock +0 -18
data/.gemtest
ADDED
|
File without changes
|
data/.gitignore
CHANGED
data/lib/simple_oauth/version.rb
CHANGED
|
@@ -2,7 +2,7 @@ module SimpleOAuth
|
|
|
2
2
|
module Version
|
|
3
3
|
MAJOR = 0 unless defined? ::SimpleOAuth::Version::MAJOR
|
|
4
4
|
MINOR = 1 unless defined? ::SimpleOAuth::Version::MINOR
|
|
5
|
-
PATCH =
|
|
5
|
+
PATCH = 4 unless defined? ::SimpleOAuth::Version::PATCH
|
|
6
6
|
STRING = [MAJOR, MINOR, PATCH].join('.') unless defined? ::SimpleOAuth::Version::STRING
|
|
7
7
|
end
|
|
8
8
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_oauth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 1
|
|
9
|
-
- 3
|
|
10
|
-
version: 0.1.3
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.1.4
|
|
11
6
|
platform: ruby
|
|
12
7
|
authors:
|
|
13
8
|
- Steve Richert
|
|
@@ -15,22 +10,19 @@ autorequire:
|
|
|
15
10
|
bindir: bin
|
|
16
11
|
cert_chain: []
|
|
17
12
|
|
|
18
|
-
date:
|
|
13
|
+
date: 2011-02-03 00:00:00 -05:00
|
|
19
14
|
default_executable:
|
|
20
15
|
dependencies:
|
|
21
16
|
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: mocha
|
|
18
|
+
prerelease: false
|
|
22
19
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
23
20
|
none: false
|
|
24
21
|
requirements:
|
|
25
22
|
- - ">="
|
|
26
23
|
- !ruby/object:Gem::Version
|
|
27
|
-
hash: 3
|
|
28
|
-
segments:
|
|
29
|
-
- 0
|
|
30
24
|
version: "0"
|
|
31
25
|
type: :development
|
|
32
|
-
name: mocha
|
|
33
|
-
prerelease: false
|
|
34
26
|
version_requirements: *id001
|
|
35
27
|
description: Simply builds and verifies OAuth headers
|
|
36
28
|
email: steve.richert@gmail.com
|
|
@@ -41,9 +33,9 @@ extensions: []
|
|
|
41
33
|
extra_rdoc_files:
|
|
42
34
|
- README.rdoc
|
|
43
35
|
files:
|
|
36
|
+
- .gemtest
|
|
44
37
|
- .gitignore
|
|
45
38
|
- Gemfile
|
|
46
|
-
- Gemfile.lock
|
|
47
39
|
- LICENSE
|
|
48
40
|
- README.rdoc
|
|
49
41
|
- Rakefile
|
|
@@ -71,25 +63,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
71
63
|
requirements:
|
|
72
64
|
- - ">="
|
|
73
65
|
- !ruby/object:Gem::Version
|
|
74
|
-
hash: 3
|
|
75
|
-
segments:
|
|
76
|
-
- 0
|
|
77
66
|
version: "0"
|
|
78
67
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
68
|
none: false
|
|
80
69
|
requirements:
|
|
81
70
|
- - ">="
|
|
82
71
|
- !ruby/object:Gem::Version
|
|
83
|
-
hash: 23
|
|
84
|
-
segments:
|
|
85
|
-
- 1
|
|
86
|
-
- 3
|
|
87
|
-
- 6
|
|
88
72
|
version: 1.3.6
|
|
89
73
|
requirements: []
|
|
90
74
|
|
|
91
75
|
rubyforge_project:
|
|
92
|
-
rubygems_version: 1.
|
|
76
|
+
rubygems_version: 1.5.0
|
|
93
77
|
signing_key:
|
|
94
78
|
specification_version: 3
|
|
95
79
|
summary: Simply builds and verifies OAuth headers
|