crowdint_auth 0.0.3 → 0.1.0
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.
- checksums.yaml +7 -0
- data/README.md +6 -0
- data/lib/crowdint_auth/version.rb +1 -1
- metadata +18 -34
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: eaa6dccacca84fad0cdabdbd4369563f931564d8
|
|
4
|
+
data.tar.gz: 388dca4189a4cad558e17b31deabaf73a8d7a605
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 376b3054efde244de360161ad9afcc875cc68056bc3cdddcc9f3b5f6c96f1243295a3025120996a9cb24fed72439d726373ab5714c7c79ef83d872e6bdece8b3
|
|
7
|
+
data.tar.gz: dfff2a9d2c5604e6081188bd69f08ae2a77f7f95b1bcb858dc3a5f2ce012639a7c0529605af0dfd7aac56c55b9d28d65f1f894a420a8845d6c1171e2a13d248e
|
data/README.md
CHANGED
|
@@ -28,6 +28,12 @@ Devise model needs the following extra fields:
|
|
|
28
28
|
end
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
+
## Devise
|
|
32
|
+
|
|
33
|
+
The devise model should include the `:omniauthable` option, for example:
|
|
34
|
+
|
|
35
|
+
devise :database_authenticatable, :token_authenticatable, :trackable, :omniauthable
|
|
36
|
+
|
|
31
37
|
## Routes
|
|
32
38
|
|
|
33
39
|
### If your user class is User
|
metadata
CHANGED
|
@@ -1,81 +1,72 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: crowdint_auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.1.0
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- David Padilla
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2013-04-03 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rails
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - '>'
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.2
|
|
19
|
+
version: '3.2'
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - '>'
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 3.2
|
|
26
|
+
version: '3.2'
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: devise
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
|
-
- -
|
|
31
|
+
- - '>='
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
33
|
version: '0'
|
|
38
34
|
type: :runtime
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
|
-
- -
|
|
38
|
+
- - '>='
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
40
|
version: '0'
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
47
42
|
name: omniauth-google-apps
|
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
44
|
requirements:
|
|
51
|
-
- -
|
|
45
|
+
- - '>='
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
53
47
|
version: '0'
|
|
54
48
|
type: :runtime
|
|
55
49
|
prerelease: false
|
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
51
|
requirements:
|
|
59
|
-
- -
|
|
52
|
+
- - '>='
|
|
60
53
|
- !ruby/object:Gem::Version
|
|
61
54
|
version: '0'
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
|
63
56
|
name: rspec-rails
|
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
-
none: false
|
|
66
58
|
requirements:
|
|
67
|
-
- -
|
|
59
|
+
- - '>='
|
|
68
60
|
- !ruby/object:Gem::Version
|
|
69
61
|
version: '0'
|
|
70
62
|
type: :development
|
|
71
63
|
prerelease: false
|
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
none: false
|
|
74
65
|
requirements:
|
|
75
|
-
- -
|
|
66
|
+
- - '>='
|
|
76
67
|
- !ruby/object:Gem::Version
|
|
77
68
|
version: '0'
|
|
78
|
-
description:
|
|
69
|
+
description: 'Authenticate Rails apps with CrowdInt''s Google Apps and Devise '
|
|
79
70
|
email:
|
|
80
71
|
- david@crowdint.com
|
|
81
72
|
executables: []
|
|
@@ -99,32 +90,25 @@ files:
|
|
|
99
90
|
- README.md
|
|
100
91
|
homepage: https://github.com/dabit/crowdint_auth
|
|
101
92
|
licenses: []
|
|
93
|
+
metadata: {}
|
|
102
94
|
post_install_message:
|
|
103
95
|
rdoc_options: []
|
|
104
96
|
require_paths:
|
|
105
97
|
- lib
|
|
106
98
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
|
-
none: false
|
|
108
99
|
requirements:
|
|
109
|
-
- -
|
|
100
|
+
- - '>='
|
|
110
101
|
- !ruby/object:Gem::Version
|
|
111
102
|
version: '0'
|
|
112
|
-
segments:
|
|
113
|
-
- 0
|
|
114
|
-
hash: -1299067292570316812
|
|
115
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
|
-
none: false
|
|
117
104
|
requirements:
|
|
118
|
-
- -
|
|
105
|
+
- - '>='
|
|
119
106
|
- !ruby/object:Gem::Version
|
|
120
107
|
version: '0'
|
|
121
|
-
segments:
|
|
122
|
-
- 0
|
|
123
|
-
hash: -1299067292570316812
|
|
124
108
|
requirements: []
|
|
125
109
|
rubyforge_project:
|
|
126
|
-
rubygems_version:
|
|
110
|
+
rubygems_version: 2.0.2
|
|
127
111
|
signing_key:
|
|
128
|
-
specification_version:
|
|
112
|
+
specification_version: 4
|
|
129
113
|
summary: Authenticate Rails apps with CrowdInt's Google Apps and Devise
|
|
130
114
|
test_files: []
|