forked from NoamB/sorcery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (31 loc) · 819 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
source 'https://rubygems.org'
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
gem 'oauth', "~> 0.4.4"
gem 'oauth2', "~> 0.8.0"
gem 'bcrypt-ruby', "~> 3.0.0"
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
gem 'abstract', '>= 1.0.0'
gem "rails", "~> 3.2.15"
gem 'json', ">= 1.7.7"
gem "rspec", "~> 2.14.0"
gem 'rspec-rails', "~> 2.14.0"
gem 'sqlite3'
gem "yard", "~> 0.6.0"
gem "bundler", ">= 1.1.0"
gem 'simplecov', '>= 0.3.8', :require => false # Will install simplecov-html as a dependency
gem 'timecop'
group :mongomapper do
gem 'mongo_mapper'
end
group :mongoid do
gem 'mongoid', "~> 2.4.4"
gem 'bson_ext'
end
group :datamapper do
gem 'mysql2'
gem 'data_mapper'
gem 'dm-mysql-adapter'
end