devise-naught_authentication 0.1.0 → 0.1.1
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/VERSION +1 -1
- data/devise-naught_authentication.gemspec +68 -0
- data/lib/devise/naught_authentication/model.rb +6 -0
- metadata +4 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "devise-naught_authentication"
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Curtis9"]
|
|
12
|
+
s.date = "2014-03-13"
|
|
13
|
+
s.description = "A Routable, but not authenticatable devise module - useful for creating api authentication schemes not based on database user"
|
|
14
|
+
s.email = "curtis@lindenlab.com"
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.md",
|
|
18
|
+
"README.rdoc"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
".document",
|
|
22
|
+
".rspec",
|
|
23
|
+
"Gemfile",
|
|
24
|
+
"Gemfile.lock",
|
|
25
|
+
"LICENSE.txt",
|
|
26
|
+
"README.md",
|
|
27
|
+
"README.rdoc",
|
|
28
|
+
"Rakefile",
|
|
29
|
+
"VERSION",
|
|
30
|
+
"devise-naught_authentication.gemspec",
|
|
31
|
+
"lib/devise-naught_authentication.rb",
|
|
32
|
+
"lib/devise/naught_authentication.rb",
|
|
33
|
+
"lib/devise/naught_authentication/model.rb",
|
|
34
|
+
"lib/devise/naught_authentication/strategy.rb",
|
|
35
|
+
"spec/devise-naught_authentication_spec.rb",
|
|
36
|
+
"spec/spec_helper.rb"
|
|
37
|
+
]
|
|
38
|
+
s.homepage = "http://github.com/robotarmy/devise-naught_authentication"
|
|
39
|
+
s.licenses = ["MIT"]
|
|
40
|
+
s.require_paths = ["lib"]
|
|
41
|
+
s.rubygems_version = "1.8.23"
|
|
42
|
+
s.summary = "Null/Not/Zero authentication for devise"
|
|
43
|
+
|
|
44
|
+
if s.respond_to? :specification_version then
|
|
45
|
+
s.specification_version = 3
|
|
46
|
+
|
|
47
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
48
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
|
|
49
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
|
50
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
|
|
51
|
+
s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
52
|
+
s.add_development_dependency(%q<simplecov>, [">= 0"])
|
|
53
|
+
else
|
|
54
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
|
55
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
56
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
|
57
|
+
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
58
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
|
59
|
+
end
|
|
60
|
+
else
|
|
61
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
|
62
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
63
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
|
64
|
+
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
65
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise-naught_authentication
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -110,8 +110,10 @@ files:
|
|
|
110
110
|
- README.rdoc
|
|
111
111
|
- Rakefile
|
|
112
112
|
- VERSION
|
|
113
|
+
- devise-naught_authentication.gemspec
|
|
113
114
|
- lib/devise-naught_authentication.rb
|
|
114
115
|
- lib/devise/naught_authentication.rb
|
|
116
|
+
- lib/devise/naught_authentication/model.rb
|
|
115
117
|
- lib/devise/naught_authentication/strategy.rb
|
|
116
118
|
- spec/devise-naught_authentication_spec.rb
|
|
117
119
|
- spec/spec_helper.rb
|
|
@@ -130,7 +132,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
130
132
|
version: '0'
|
|
131
133
|
segments:
|
|
132
134
|
- 0
|
|
133
|
-
hash: -
|
|
135
|
+
hash: -1292276268227867361
|
|
134
136
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
137
|
none: false
|
|
136
138
|
requirements:
|