2014-08-07 21:56:23 -04:00
|
|
|
source 'https://rubygems.org'
|
2011-11-08 15:56:04 -05:00
|
|
|
gemspec
|
|
|
|
|
2014-08-07 21:56:23 -04:00
|
|
|
group :development do
|
|
|
|
|
|
|
|
# ActionView extension
|
|
|
|
# ####################
|
2014-12-29 12:22:29 -05:00
|
|
|
gem 'actionview', '>= 4.2.0'
|
2014-08-07 21:56:23 -04:00
|
|
|
|
|
|
|
# ActiveSupport extension
|
|
|
|
# #######################
|
2014-12-29 12:22:29 -05:00
|
|
|
gem 'activesupport', '>= 4.2.0'
|
2014-08-07 21:56:23 -04:00
|
|
|
|
|
|
|
# ActiveRecord extension
|
|
|
|
# ######################
|
|
|
|
# * To simplify creating test models we use an in-memory SQLite DB
|
2014-12-29 12:22:29 -05:00
|
|
|
gem 'activerecord', '>= 4.2.0'
|
2014-08-07 21:56:23 -04:00
|
|
|
gem 'sqlite3'
|
|
|
|
|
|
|
|
# MongoMapper extension
|
|
|
|
# #####################
|
|
|
|
# * cannot be enabled at the same time as mongoid
|
|
|
|
# gem 'mongo_mapper', '~> 0.13.0'
|
|
|
|
# gem 'bson_ext'
|
|
|
|
|
|
|
|
# Nokogiri extension
|
|
|
|
# ##################
|
2014-12-29 12:22:29 -05:00
|
|
|
gem 'nokogiri', '>= 1.6.5'
|
2014-08-07 21:56:23 -04:00
|
|
|
|
|
|
|
# Ripple extension
|
|
|
|
# ################
|
|
|
|
#
|
|
|
|
# * Ripple is abandoned http://basho.com/tag/ripple-client-apis/
|
|
|
|
# * Ripple is not currently compatible with Rails 4
|
|
|
|
# gem 'ripple', '~> 0.9.5'
|
|
|
|
|
|
|
|
# Mongoid extension
|
|
|
|
# #################
|
|
|
|
# * cannot be enabled at the same time as mongo_mapper
|
2014-12-29 12:22:29 -05:00
|
|
|
gem 'mongoid', '>= 4.0.0'
|
2014-08-07 21:56:23 -04:00
|
|
|
end
|