simple-auth 0.3.6 → 0.3.7
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/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/simple_auth.rb +5 -0
- data/lib/{simple-auth → simple_auth}/api.rb +0 -0
- data/lib/{simple-auth → simple_auth}/configuration_helper.rb +0 -0
- data/simple-auth.gemspec +11 -11
- data/spec/lib/{simple-auth → simple_auth}/api_spec.rb +0 -0
- data/spec/lib/{simple-auth → simple_auth}/configuration_helper_spec.rb +0 -0
- data/spec/spec_helper.rb +1 -1
- metadata +16 -14
- data/lib/simple-auth.rb +0 -5
data/Rakefile
CHANGED
|
@@ -10,7 +10,7 @@ begin
|
|
|
10
10
|
gem.email = "uchouhan@optimiscorp.com"
|
|
11
11
|
gem.homepage = "http://github.com/uchouhan/simple-auth"
|
|
12
12
|
gem.authors = ["Umang Chouhan"]
|
|
13
|
-
gem.add_development_dependency "rspec", ">=
|
|
13
|
+
gem.add_development_dependency "rspec", ">= 2.0.0.beta.16"
|
|
14
14
|
gem.add_development_dependency "yard", ">= 0"
|
|
15
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
16
16
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.7
|
data/lib/simple_auth.rb
ADDED
|
File without changes
|
|
File without changes
|
data/simple-auth.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{simple-auth}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Umang Chouhan"]
|
|
@@ -25,12 +25,12 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
"Rakefile",
|
|
26
26
|
"VERSION",
|
|
27
27
|
"configuration.rb.example",
|
|
28
|
-
"lib/
|
|
29
|
-
"lib/
|
|
30
|
-
"lib/
|
|
28
|
+
"lib/simple_auth.rb",
|
|
29
|
+
"lib/simple_auth/api.rb",
|
|
30
|
+
"lib/simple_auth/configuration_helper.rb",
|
|
31
31
|
"simple-auth.gemspec",
|
|
32
|
-
"spec/lib/
|
|
33
|
-
"spec/lib/
|
|
32
|
+
"spec/lib/simple_auth/api_spec.rb",
|
|
33
|
+
"spec/lib/simple_auth/configuration_helper_spec.rb",
|
|
34
34
|
"spec/spec_helper.rb",
|
|
35
35
|
"spec/support/configuration.rb",
|
|
36
36
|
"spec/support/mock_requests.rb",
|
|
@@ -42,8 +42,8 @@ Gem::Specification.new do |s|
|
|
|
42
42
|
s.rubygems_version = %q{1.3.7}
|
|
43
43
|
s.summary = %q{Simple shared authentication API}
|
|
44
44
|
s.test_files = [
|
|
45
|
-
"spec/lib/
|
|
46
|
-
"spec/lib/
|
|
45
|
+
"spec/lib/simple_auth/api_spec.rb",
|
|
46
|
+
"spec/lib/simple_auth/configuration_helper_spec.rb",
|
|
47
47
|
"spec/spec_helper.rb",
|
|
48
48
|
"spec/support/configuration.rb",
|
|
49
49
|
"spec/support/mock_requests.rb",
|
|
@@ -55,14 +55,14 @@ Gem::Specification.new do |s|
|
|
|
55
55
|
s.specification_version = 3
|
|
56
56
|
|
|
57
57
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
58
|
-
s.add_development_dependency(%q<rspec>, [">=
|
|
58
|
+
s.add_development_dependency(%q<rspec>, [">= 2.0.0.beta.16"])
|
|
59
59
|
s.add_development_dependency(%q<yard>, [">= 0"])
|
|
60
60
|
else
|
|
61
|
-
s.add_dependency(%q<rspec>, [">=
|
|
61
|
+
s.add_dependency(%q<rspec>, [">= 2.0.0.beta.16"])
|
|
62
62
|
s.add_dependency(%q<yard>, [">= 0"])
|
|
63
63
|
end
|
|
64
64
|
else
|
|
65
|
-
s.add_dependency(%q<rspec>, [">=
|
|
65
|
+
s.add_dependency(%q<rspec>, [">= 2.0.0.beta.16"])
|
|
66
66
|
s.add_dependency(%q<yard>, [">= 0"])
|
|
67
67
|
end
|
|
68
68
|
end
|
|
File without changes
|
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 29
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 7
|
|
10
|
+
version: 0.3.7
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Umang Chouhan
|
|
@@ -26,12 +26,14 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 62196419
|
|
30
30
|
segments:
|
|
31
|
-
- 1
|
|
32
31
|
- 2
|
|
33
|
-
-
|
|
34
|
-
|
|
32
|
+
- 0
|
|
33
|
+
- 0
|
|
34
|
+
- beta
|
|
35
|
+
- 16
|
|
36
|
+
version: 2.0.0.beta.16
|
|
35
37
|
type: :development
|
|
36
38
|
version_requirements: *id001
|
|
37
39
|
- !ruby/object:Gem::Dependency
|
|
@@ -66,12 +68,12 @@ files:
|
|
|
66
68
|
- Rakefile
|
|
67
69
|
- VERSION
|
|
68
70
|
- configuration.rb.example
|
|
69
|
-
- lib/
|
|
70
|
-
- lib/
|
|
71
|
-
- lib/
|
|
71
|
+
- lib/simple_auth.rb
|
|
72
|
+
- lib/simple_auth/api.rb
|
|
73
|
+
- lib/simple_auth/configuration_helper.rb
|
|
72
74
|
- simple-auth.gemspec
|
|
73
|
-
- spec/lib/
|
|
74
|
-
- spec/lib/
|
|
75
|
+
- spec/lib/simple_auth/api_spec.rb
|
|
76
|
+
- spec/lib/simple_auth/configuration_helper_spec.rb
|
|
75
77
|
- spec/spec_helper.rb
|
|
76
78
|
- spec/support/configuration.rb
|
|
77
79
|
- spec/support/mock_requests.rb
|
|
@@ -111,8 +113,8 @@ signing_key:
|
|
|
111
113
|
specification_version: 3
|
|
112
114
|
summary: Simple shared authentication API
|
|
113
115
|
test_files:
|
|
114
|
-
- spec/lib/
|
|
115
|
-
- spec/lib/
|
|
116
|
+
- spec/lib/simple_auth/api_spec.rb
|
|
117
|
+
- spec/lib/simple_auth/configuration_helper_spec.rb
|
|
116
118
|
- spec/spec_helper.rb
|
|
117
119
|
- spec/support/configuration.rb
|
|
118
120
|
- spec/support/mock_requests.rb
|