Merge pull request #132 from edx/bbeggs/mongodb-3.0-PLAT-730
Update Mongoid to 5.x release (mongodb 3.x + compatibility)
Showing
... | @@ -14,25 +14,21 @@ gem 'sinatra' | ... | @@ -14,25 +14,21 @@ gem 'sinatra' |
gem 'yajl-ruby' | gem 'yajl-ruby' | ||
gem 'ampex' | gem 'mongoid', "~>5.0" | ||
gem 'bson', '~>3.1' | |||
gem 'mongo' | |||
gem 'moped', "1.5.1" | |||
gem 'mongoid', "3.0.15" | |||
gem 'bson_ext' | gem 'bson_ext' | ||
gem 'protected_attributes' | |||
gem 'delayed_job' | gem 'delayed_job' | ||
gem 'delayed_job_mongoid', :git => 'https://github.com/dementrock/delayed_job_mongoid.git' | gem 'delayed_job_mongoid' | ||
gem "enumerize", "~>0.8.0" | |||
gem 'mongoid-tree', :git => 'https://github.com/dementrock/mongoid-tree.git' | |||
gem 'voteable_mongo', :git => 'https://github.com/dementrock/voteable_mongo.git' | |||
gem 'mongoid_magic_counter_cache', :git => 'https://github.com/dementrock/mongoid-magic-counter-cache.git' | |||
gem 'kaminari', :require => 'kaminari/sinatra', :git => 'https://github.com/dementrock/kaminari.git' | gem "enumerize" | ||
gem 'mongoid-tree', :git => 'https://github.com/macdiesel/mongoid-tree' | |||
gem 'rs_voteable_mongo', :git => 'https://github.com/navneet35371/voteable_mongo.git' | |||
gem 'mongoid_magic_counter_cache' | |||
gem 'faker' | gem 'faker' | ||
gem 'will_paginate_mongoid' | gem 'will_paginate_mongoid', "~>2.0" | ||
gem 'rdiscount' | gem 'rdiscount' | ||
gem 'nokogiri' | gem 'nokogiri' | ||
... | @@ -49,12 +45,14 @@ group :test do | ... | @@ -49,12 +45,14 @@ group :test do |
gem 'guard' | gem 'guard' | ||
gem 'guard-unicorn' | gem 'guard-unicorn' | ||
gem 'simplecov', :require => false | gem 'simplecov', :require => false | ||
gem 'database_cleaner' | # database_cleaner 1.5.1 which is compatible with Mongoid 5 has not been released | ||
# to rubygems yet, so pull it from github. | |||
gem 'database_cleaner', :git => 'https://github.com/DatabaseCleaner/database_cleaner', :ref => 'b87f00320f8aa0f7e499d183128f05ce29cedc33' | |||
end | end | ||
gem 'newrelic_rpm' | gem 'newrelic_rpm' | ||
gem 'newrelic_moped' | |||
gem 'unicorn' | gem 'unicorn' | ||
gem "rack-timeout", "0.1.0beta3" | gem "rack-timeout" | ||
gem "i18n" | gem "i18n" | ||
gem "rack-contrib", :git => 'https://github.com/rack/rack-contrib.git', :ref => '6ff3ca2b2d988911ca52a2712f6a7da5e064aa27' | gem "rack-contrib", :git => 'https://github.com/rack/rack-contrib.git', :ref => '6ff3ca2b2d988911ca52a2712f6a7da5e064aa27' | ||
Gemfile.lock
100644 → 100755
Please
register
or
sign in
to comment