Skip to content

Commit 241b7af

Browse files
committed
Initial commit for getting SSO Devise and Omniauth
0 parents  commit 241b7af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+10840
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.bundle
2+
log/*.log
3+
tmp/**/*
4+
config/initializers/omniauth.rb

Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.0.3'
4+
gem 'mysql2'
5+
gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
6+
gem 'omniauth'
7+
gem 'mongrel'

Gemfile.lock

+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
GIT
2+
remote: git://github.com/plataformatec/devise.git
3+
revision: 76a480044688672acdd40469c74c6abfea35f8a4
4+
specs:
5+
devise (1.2.rc)
6+
bcrypt-ruby (~> 2.1.2)
7+
orm_adapter (~> 0.0.3)
8+
warden (~> 1.0.3)
9+
10+
GEM
11+
remote: http://rubygems.org/
12+
specs:
13+
abstract (1.0.0)
14+
actionmailer (3.0.3)
15+
actionpack (= 3.0.3)
16+
mail (~> 2.2.9)
17+
actionpack (3.0.3)
18+
activemodel (= 3.0.3)
19+
activesupport (= 3.0.3)
20+
builder (~> 2.1.2)
21+
erubis (~> 2.6.6)
22+
i18n (~> 0.4)
23+
rack (~> 1.2.1)
24+
rack-mount (~> 0.6.13)
25+
rack-test (~> 0.5.6)
26+
tzinfo (~> 0.3.23)
27+
activemodel (3.0.3)
28+
activesupport (= 3.0.3)
29+
builder (~> 2.1.2)
30+
i18n (~> 0.4)
31+
activerecord (3.0.3)
32+
activemodel (= 3.0.3)
33+
activesupport (= 3.0.3)
34+
arel (~> 2.0.2)
35+
tzinfo (~> 0.3.23)
36+
activeresource (3.0.3)
37+
activemodel (= 3.0.3)
38+
activesupport (= 3.0.3)
39+
activesupport (3.0.3)
40+
addressable (2.2.4)
41+
arel (2.0.7)
42+
bcrypt-ruby (2.1.4)
43+
builder (2.1.2)
44+
cgi_multipart_eof_fix (2.5.0)
45+
daemons (1.1.0)
46+
erubis (2.6.6)
47+
abstract (>= 1.0.0)
48+
faraday (0.5.4)
49+
addressable (~> 2.2.2)
50+
multipart-post (~> 1.1.0)
51+
rack (>= 1.1.0, < 2)
52+
fastthread (1.0.7)
53+
gem_plugin (0.2.3)
54+
i18n (0.5.0)
55+
mail (2.2.15)
56+
activesupport (>= 2.3.6)
57+
i18n (>= 0.4.0)
58+
mime-types (~> 1.16)
59+
treetop (~> 1.4.8)
60+
mime-types (1.16)
61+
mongrel (1.1.5)
62+
cgi_multipart_eof_fix (>= 2.4)
63+
daemons (>= 1.0.3)
64+
fastthread (>= 1.0.1)
65+
gem_plugin (>= 0.2.3)
66+
multi_json (0.0.5)
67+
multipart-post (1.1.0)
68+
mysql2 (0.2.6)
69+
net-ldap (0.1.1)
70+
nokogiri (1.4.4)
71+
oa-basic (0.1.6)
72+
multi_json (~> 0.0.2)
73+
nokogiri (~> 1.4.2)
74+
oa-core (= 0.1.6)
75+
rest-client (~> 1.6.0)
76+
oa-core (0.1.6)
77+
rack (~> 1.1)
78+
oa-enterprise (0.1.6)
79+
net-ldap (~> 0.1.1)
80+
nokogiri (~> 1.4.2)
81+
oa-core (= 0.1.6)
82+
pyu-ruby-sasl (~> 0.0.3.1)
83+
rubyntlm (~> 0.1.1)
84+
oa-oauth (0.1.6)
85+
multi_json (~> 0.0.2)
86+
nokogiri (~> 1.4.2)
87+
oa-core (= 0.1.6)
88+
oauth (~> 0.4.0)
89+
oauth2 (~> 0.1.0)
90+
oa-openid (0.1.6)
91+
oa-core (= 0.1.6)
92+
rack-openid (~> 1.2.0)
93+
ruby-openid-apps-discovery
94+
oauth (0.4.4)
95+
oauth2 (0.1.1)
96+
faraday (~> 0.5.0)
97+
multi_json (~> 0.0.4)
98+
omniauth (0.1.6)
99+
oa-basic (= 0.1.6)
100+
oa-core (= 0.1.6)
101+
oa-enterprise (= 0.1.6)
102+
oa-oauth (= 0.1.6)
103+
oa-openid (= 0.1.6)
104+
orm_adapter (0.0.4)
105+
polyglot (0.3.1)
106+
pyu-ruby-sasl (0.0.3.2)
107+
rack (1.2.1)
108+
rack-mount (0.6.13)
109+
rack (>= 1.0.0)
110+
rack-openid (1.2.0)
111+
rack (>= 1.1.0)
112+
ruby-openid (>= 2.1.8)
113+
rack-test (0.5.7)
114+
rack (>= 1.0)
115+
rails (3.0.3)
116+
actionmailer (= 3.0.3)
117+
actionpack (= 3.0.3)
118+
activerecord (= 3.0.3)
119+
activeresource (= 3.0.3)
120+
activesupport (= 3.0.3)
121+
bundler (~> 1.0)
122+
railties (= 3.0.3)
123+
railties (3.0.3)
124+
actionpack (= 3.0.3)
125+
activesupport (= 3.0.3)
126+
rake (>= 0.8.7)
127+
thor (~> 0.14.4)
128+
rake (0.8.7)
129+
rest-client (1.6.1)
130+
mime-types (>= 1.16)
131+
ruby-openid (2.1.8)
132+
ruby-openid-apps-discovery (1.2.0)
133+
ruby-openid (>= 2.1.7)
134+
rubyntlm (0.1.1)
135+
thor (0.14.6)
136+
treetop (1.4.9)
137+
polyglot (>= 0.3.1)
138+
tzinfo (0.3.24)
139+
warden (1.0.3)
140+
rack (>= 1.0.0)
141+
142+
PLATFORMS
143+
ruby
144+
145+
DEPENDENCIES
146+
devise!
147+
mongrel
148+
mysql2
149+
omniauth
150+
rails (= 3.0.3)

0 commit comments

Comments
 (0)