forked from NoamB/sorcery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
29 lines (28 loc) · 817 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
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.
group :development do
gem 'abstract', '>= 1.0.0'
gem "rails", ">= 3.0.0"
gem 'json', ">= 1.7.7"
gem "rspec", "~> 2.5.0"
gem 'rspec-rails', "~> 2.5.0"
#gem 'ruby-debug19'
gem 'sqlite3'
gem "yard", "~> 0.6.0"
gem "bundler", ">= 1.1.0"
gem "jeweler", "~> 1.8.3"
gem 'simplecov', '>= 0.3.8', :require => false # Will install simplecov-html as a dependency
gem 'timecop'
gem 'capybara'
gem 'mongo_mapper'
gem 'mongoid', "~> 2.4.4"
gem 'couchbase'
gem 'couchbase-model'
end