Add gems for authentication
This commit is contained in:
parent
314e517bc4
commit
260b24a376
2 changed files with 26 additions and 0 deletions
4
Gemfile
4
Gemfile
|
@ -9,6 +9,10 @@ gem 'sqlite3'
|
||||||
|
|
||||||
gem 'thin'
|
gem 'thin'
|
||||||
|
|
||||||
|
gem 'devise'
|
||||||
|
gem 'omniauth'
|
||||||
|
gem 'omniauth-kerberos'
|
||||||
|
|
||||||
|
|
||||||
# Gems used only for assets and not required
|
# Gems used only for assets and not required
|
||||||
# in production environments by default.
|
# in production environments by default.
|
||||||
|
|
22
Gemfile.lock
22
Gemfile.lock
|
@ -29,6 +29,7 @@ GEM
|
||||||
i18n (~> 0.6)
|
i18n (~> 0.6)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
arel (3.0.2)
|
arel (3.0.2)
|
||||||
|
bcrypt-ruby (3.0.1)
|
||||||
better_errors (0.7.2)
|
better_errors (0.7.2)
|
||||||
coderay (>= 1.0.0)
|
coderay (>= 1.0.0)
|
||||||
erubis (>= 2.6.6)
|
erubis (>= 2.6.6)
|
||||||
|
@ -57,6 +58,11 @@ GEM
|
||||||
commonjs (0.2.6)
|
commonjs (0.2.6)
|
||||||
daemons (1.1.9)
|
daemons (1.1.9)
|
||||||
debug_inspector (0.0.2)
|
debug_inspector (0.0.2)
|
||||||
|
devise (2.2.3)
|
||||||
|
bcrypt-ruby (~> 3.0)
|
||||||
|
orm_adapter (~> 0.1)
|
||||||
|
railties (~> 3.1)
|
||||||
|
warden (~> 1.2.1)
|
||||||
erubis (2.7.0)
|
erubis (2.7.0)
|
||||||
eventmachine (1.0.3)
|
eventmachine (1.0.3)
|
||||||
execjs (1.4.0)
|
execjs (1.4.0)
|
||||||
|
@ -64,6 +70,7 @@ GEM
|
||||||
fastercsv (1.5.5)
|
fastercsv (1.5.5)
|
||||||
haml (4.0.1)
|
haml (4.0.1)
|
||||||
tilt
|
tilt
|
||||||
|
hashie (1.2.0)
|
||||||
highline (1.6.16)
|
highline (1.6.16)
|
||||||
hike (1.2.1)
|
hike (1.2.1)
|
||||||
i18n (0.6.4)
|
i18n (0.6.4)
|
||||||
|
@ -87,6 +94,15 @@ GEM
|
||||||
railties
|
railties
|
||||||
mime-types (1.21)
|
mime-types (1.21)
|
||||||
multi_json (1.7.2)
|
multi_json (1.7.2)
|
||||||
|
omniauth (1.1.3)
|
||||||
|
hashie (~> 1.2)
|
||||||
|
rack
|
||||||
|
omniauth-kerberos (0.2.0)
|
||||||
|
omniauth-multipassword
|
||||||
|
timfel-krb5-auth (~> 0.8)
|
||||||
|
omniauth-multipassword (0.4.0)
|
||||||
|
omniauth (~> 1.0)
|
||||||
|
orm_adapter (0.4.0)
|
||||||
polyglot (0.3.3)
|
polyglot (0.3.3)
|
||||||
rack (1.4.5)
|
rack (1.4.5)
|
||||||
rack-cache (1.2)
|
rack-cache (1.2)
|
||||||
|
@ -149,6 +165,7 @@ GEM
|
||||||
rack (>= 1.0.0)
|
rack (>= 1.0.0)
|
||||||
thor (0.18.0)
|
thor (0.18.0)
|
||||||
tilt (1.3.6)
|
tilt (1.3.6)
|
||||||
|
timfel-krb5-auth (0.8)
|
||||||
treetop (1.4.12)
|
treetop (1.4.12)
|
||||||
polyglot
|
polyglot
|
||||||
polyglot (>= 0.3.1)
|
polyglot (>= 0.3.1)
|
||||||
|
@ -160,6 +177,8 @@ GEM
|
||||||
uglifier (1.3.0)
|
uglifier (1.3.0)
|
||||||
execjs (>= 0.3.0)
|
execjs (>= 0.3.0)
|
||||||
multi_json (~> 1.0, >= 1.0.2)
|
multi_json (~> 1.0, >= 1.0.2)
|
||||||
|
warden (1.2.1)
|
||||||
|
rack (>= 1.0)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
@ -169,9 +188,12 @@ DEPENDENCIES
|
||||||
binding_of_caller
|
binding_of_caller
|
||||||
brakeman
|
brakeman
|
||||||
coffee-rails (~> 3.2.1)
|
coffee-rails (~> 3.2.1)
|
||||||
|
devise
|
||||||
jquery-rails
|
jquery-rails
|
||||||
less-rails
|
less-rails
|
||||||
meta_request
|
meta_request
|
||||||
|
omniauth
|
||||||
|
omniauth-kerberos
|
||||||
rack-mini-profiler
|
rack-mini-profiler
|
||||||
rails (= 3.2.11)
|
rails (= 3.2.11)
|
||||||
rails-footnotes
|
rails-footnotes
|
||||||
|
|
Loading…
Reference in a new issue