minimalist_authentication 0.6 → 0.6.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/lib/minimalist/authentication.rb +0 -1
- data/lib/minimalist/version.rb +1 -1
- data/lib/minimalist_authentication.rb +1 -0
- metadata +54 -35
data/lib/minimalist/version.rb
CHANGED
metadata
CHANGED
@@ -1,42 +1,51 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimalist_authentication
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 5
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 6
|
9
|
+
- 1
|
10
|
+
version: 0.6.1
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Aaron Baldwin
|
9
14
|
- Jonathan S. Garvin
|
10
15
|
- WWIDEA, Inc
|
11
16
|
autorequire:
|
12
17
|
bindir: bin
|
13
18
|
cert_chain: []
|
14
|
-
|
15
|
-
|
16
|
-
|
19
|
+
|
20
|
+
date: 2012-07-18 00:00:00 -06:00
|
21
|
+
default_executable:
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
17
24
|
name: bcrypt-ruby
|
18
|
-
requirement: !ruby/object:Gem::Requirement
|
19
|
-
none: false
|
20
|
-
requirements:
|
21
|
-
- - ~>
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 3.0.1
|
24
|
-
type: :runtime
|
25
25
|
prerelease: false
|
26
|
-
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
27
|
none: false
|
28
|
-
requirements:
|
28
|
+
requirements:
|
29
29
|
- - ~>
|
30
|
-
- !ruby/object:Gem::Version
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 5
|
32
|
+
segments:
|
33
|
+
- 3
|
34
|
+
- 0
|
35
|
+
- 1
|
31
36
|
version: 3.0.1
|
32
|
-
|
33
|
-
|
34
|
-
|
37
|
+
type: :runtime
|
38
|
+
version_requirements: *id001
|
39
|
+
description: A Rails authentication plugin that takes a minimalist approach. It is designed to be simple to understand, use, and modify for your application.
|
40
|
+
email:
|
35
41
|
- developers@wwidea.org
|
36
42
|
executables: []
|
43
|
+
|
37
44
|
extensions: []
|
45
|
+
|
38
46
|
extra_rdoc_files: []
|
39
|
-
|
47
|
+
|
48
|
+
files:
|
40
49
|
- .gitignore
|
41
50
|
- MIT-LICENSE
|
42
51
|
- README
|
@@ -92,31 +101,41 @@ files:
|
|
92
101
|
- test/rails_root/test/test_helper.rb
|
93
102
|
- test/sessions_test.rb
|
94
103
|
- test/test_helper.rb
|
104
|
+
has_rdoc: true
|
95
105
|
homepage: https://github.com/wwidea/minimalist_authentication
|
96
106
|
licenses: []
|
107
|
+
|
97
108
|
post_install_message:
|
98
109
|
rdoc_options: []
|
99
|
-
|
110
|
+
|
111
|
+
require_paths:
|
100
112
|
- lib
|
101
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
102
114
|
none: false
|
103
|
-
requirements:
|
104
|
-
- -
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
|
107
|
-
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
hash: 3
|
119
|
+
segments:
|
120
|
+
- 0
|
121
|
+
version: "0"
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
123
|
none: false
|
109
|
-
requirements:
|
110
|
-
- -
|
111
|
-
- !ruby/object:Gem::Version
|
112
|
-
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
hash: 3
|
128
|
+
segments:
|
129
|
+
- 0
|
130
|
+
version: "0"
|
113
131
|
requirements: []
|
132
|
+
|
114
133
|
rubyforge_project:
|
115
|
-
rubygems_version: 1.
|
134
|
+
rubygems_version: 1.3.7
|
116
135
|
signing_key:
|
117
136
|
specification_version: 3
|
118
137
|
summary: A Rails authentication plugin that takes a minimalist approach.
|
119
|
-
test_files:
|
138
|
+
test_files:
|
120
139
|
- test/authentication_test.rb
|
121
140
|
- test/authorization_test.rb
|
122
141
|
- test/factories.rb
|