1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00
awesome_print/Gemfile
Eoin Kelly 52bffc1873 Get specs passing with latest versions of extension gems
* Get specs passing with latest versions of
    * ActiveRecord  4.0.4
    * ActiveSupport 4.0.4
    * MongoMapper   0.13.0
    * Mongoid       4.0.0
    * ActionView    4.0.4
    * Ripple seems to be abandoned so no changes made.
* Clean up ActiveRecord setup:
    * Creating tableless AR objects seems even trickier in Rails 4 so
      simplify testing setup by using an in-memory SQLite DB back-end.

Conflicts:
	spec/ext/active_record_spec.rb
2014-12-29 12:11:08 -05:00

41 lines
977 B
Ruby

source 'https://rubygems.org'
gemspec
group :development do
# ActionView extension
# ####################
gem 'actionview', '~> 4.1.4'
# ActiveSupport extension
# #######################
gem 'activesupport', '~> 4.1.4'
# ActiveRecord extension
# ######################
# * To simplify creating test models we use an in-memory SQLite DB
gem 'activerecord', '~> 4.1.4'
gem 'sqlite3'
# MongoMapper extension
# #####################
# * cannot be enabled at the same time as mongoid
# gem 'mongo_mapper', '~> 0.13.0'
# gem 'bson_ext'
# Nokogiri extension
# ##################
gem 'nokogiri', '~> 1.6.3.1'
# 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
gem 'mongoid', '~> 4.0.0'
end