mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Updating gemfile to use the new warden version
This commit is contained in:
parent
91d0360a11
commit
06941ac7a2
4 changed files with 4 additions and 10 deletions
1
Gemfile
1
Gemfile
|
@ -6,7 +6,6 @@ gem "rails", "~> 3.2.0"
|
|||
gem "omniauth", "~> 1.0.0"
|
||||
gem "omniauth-oauth2", "~> 1.0.0"
|
||||
gem "rdoc"
|
||||
gem "warden", :git => "https://github.com/hassox/warden.git"
|
||||
|
||||
group :test do
|
||||
gem "omniauth-facebook"
|
||||
|
|
11
Gemfile.lock
11
Gemfile.lock
|
@ -1,10 +1,3 @@
|
|||
GIT
|
||||
remote: https://github.com/hassox/warden.git
|
||||
revision: 16da284a6d15888ec16c6ea1290dd34f12adf672
|
||||
specs:
|
||||
warden (1.1.0)
|
||||
rack (>= 1.0)
|
||||
|
||||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
|
@ -12,6 +5,7 @@ PATH
|
|||
bcrypt-ruby (~> 3.0)
|
||||
orm_adapter (~> 0.0.3)
|
||||
railties (~> 3.1)
|
||||
warden (~> 1.1.1)
|
||||
|
||||
GEM
|
||||
remote: http://rubygems.org/
|
||||
|
@ -143,6 +137,8 @@ GEM
|
|||
polyglot
|
||||
polyglot (>= 0.3.1)
|
||||
tzinfo (0.3.31)
|
||||
warden (1.1.1)
|
||||
rack (>= 1.0)
|
||||
webrat (0.7.2)
|
||||
nokogiri (>= 1.2.0)
|
||||
rack (>= 1.0)
|
||||
|
@ -168,5 +164,4 @@ DEPENDENCIES
|
|||
rdoc
|
||||
ruby-debug (>= 0.10.3)
|
||||
sqlite3-ruby
|
||||
warden!
|
||||
webrat (= 0.7.2)
|
||||
|
|
|
@ -18,6 +18,7 @@ Gem::Specification.new do |s|
|
|||
s.test_files = `git ls-files -- test/*`.split("\n")
|
||||
s.require_paths = ["lib"]
|
||||
|
||||
s.add_dependency("warden", "~> 1.1.1")
|
||||
s.add_dependency("orm_adapter", "~> 0.0.3")
|
||||
s.add_dependency("bcrypt-ruby", "~> 3.0")
|
||||
s.add_dependency("railties", "~> 3.1")
|
||||
|
|
|
@ -6,7 +6,6 @@ gem "rails", "~> 3.1.0"
|
|||
gem "omniauth", "~> 1.0.0"
|
||||
gem "omniauth-oauth2", "~> 1.0.0"
|
||||
gem "rdoc"
|
||||
gem "warden", :git => "https://github.com/hassox/warden.git"
|
||||
|
||||
group :test do
|
||||
gem "omniauth-facebook"
|
||||
|
|
Loading…
Reference in a new issue