* Updated gems * [inprogress] New pagination helpers used instead of pagination presenters * [inprogress] Favorites refactored to use ActiveRecord * [inprogress] PostSets refactored to use a decorator/dependency injection pattern * [inprogress] Made pool/post interaction more robust * Pool#posts now returns an ActiveRelation object * Fixed unit tests
24 lines
622 B
Ruby
24 lines
622 B
Ruby
source 'http://gemcutter.org'
|
|
|
|
group :test do
|
|
gem "shoulda"
|
|
gem "factory_girl"
|
|
gem "mocha"
|
|
gem "ffaker", :git => "http://github.com/EmmanuelOga/ffaker.git"
|
|
gem "simplecov", :require => false
|
|
end
|
|
|
|
gem "rails", "3.1.0.rc1"
|
|
gem "pg"
|
|
gem "memcache-client", :require => "memcache"
|
|
gem "imagesize", :require => "image_size"
|
|
gem "delayed_job"
|
|
gem "super_exception_notifier"
|
|
gem "haml"
|
|
gem "simple_form"
|
|
gem "mechanize"
|
|
gem "nokogiri"
|
|
gem "meta_search", :git => "git://github.com/ernie/meta_search.git"
|
|
gem "will_paginate", :git => "git://github.com/mmack/will_paginate.git", :branch => "rails3.1"
|
|
gem "silent-postgres"
|