heartcombo--devise/gemfiles/Gemfile-rails-4-1

41 lines
906 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
2016-03-09 14:13:04 +00:00
gemspec path: ".."
2016-03-09 14:13:04 +00:00
gem "rails", github: "rails/rails", branch: "4-1-stable"
gem "omniauth"
2016-05-18 16:59:06 +00:00
gem "omniauth-oauth2"
gem "rdoc", "~> 5.1"
# Force this version because it's breaking on CI since a higher nokogiri version requires Ruby 2.3+.
gem "nokogiri", "1.9.1"
group :test do
gem "omniauth-facebook"
2016-05-18 16:59:06 +00:00
gem "omniauth-openid"
gem "timecop"
2014-02-25 17:25:55 +00:00
gem "webrat", "0.7.3", require: false
gem "mocha", "~> 1.1", require: false
gem 'test_after_commit', require: false
end
platforms :jruby do
gem "activerecord-jdbc-adapter"
gem "activerecord-jdbcsqlite3-adapter"
gem "jruby-openssl"
end
platforms :ruby do
gem "sqlite3", "~> 1.3.6"
end
group :mongoid do
2016-05-18 16:59:06 +00:00
gem "mongoid", "~> 4.0"
end