heartcombo--devise/Gemfile

30 lines
623 B
Ruby
Raw Normal View History

2010-06-08 23:26:54 +00:00
source "http://rubygems.org"
2010-06-23 10:52:44 +00:00
if File.exist? File.expand_path('../../rails', __FILE__)
gem "rails", :path => "../rails"
else
gem "rails", :git => "git://github.com/rails/rails.git"
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
end
platforms :ruby do
gem "sqlite3-ruby"
if RUBY_VERSION < '1.9'
gem "ruby-debug", ">= 0.10.3"
end
group :mongoid do
gem "mongo"
2010-08-25 15:00:23 +00:00
gem "mongoid", :git => "git://github.com/mongoid/mongoid.git"
gem "bson_ext"
end
end
2010-06-08 23:26:54 +00:00
gem "warden", "0.10.7"
gem "webrat", "0.7.0"
gem "mocha", :require => false
gem "bcrypt-ruby", :require => "bcrypt"
2010-07-13 08:09:55 +00:00
gem "oauth2"