engine/Gemfile

39 lines
1.2 KiB
Ruby
Raw Normal View History

2010-03-29 22:01:47 +00:00
# Edit this Gemfile to bundle your application"s dependencies.
source "http://gemcutter.org"
2010-04-09 09:23:41 +00:00
source "http://gems.github.com"
2010-03-29 22:01:47 +00:00
2010-04-22 23:52:11 +00:00
gem "rails", "3.0.0.beta3"
2010-03-29 22:01:47 +00:00
gem "liquid"
gem "bson_ext", ">= 1.0.1"
2010-03-29 22:01:47 +00:00
gem "mongo_ext"
gem "mongoid", ">= 2.0.0.beta6"
gem "mongoid_acts_as_tree", :git => 'git://github.com/evansagge/mongoid_acts_as_tree.git'
2010-04-09 09:23:41 +00:00
gem "warden"
gem "devise", ">= 1.1.rc0"
2010-05-11 21:38:52 +00:00
gem "haml", '>= 3.0.1' #, :git => 'git://github.com/nex3/haml.git'
2010-04-22 23:52:11 +00:00
gem "formtastic", :git => 'git://github.com/justinfrench/formtastic.git', :branch => 'rails3'
gem "mongoid_acts_as_tree", :git => 'git://github.com/evansagge/mongoid_acts_as_tree.git'
2010-05-11 21:38:52 +00:00
gem "carrierwave", :git => "http://github.com/jnicklas/carrierwave.git"
gem "rmagick"
2010-04-09 09:23:41 +00:00
# Development environment
group :development do
# Using mongrel instead of webrick (default server)
gem "mongrel"
gem "cgi_multipart_eof_fix"
gem "fastthread"
gem "mongrel_experimental"
2010-03-29 22:01:47 +00:00
end
2010-04-09 10:22:38 +00:00
group :test do
2010-04-09 12:03:54 +00:00
gem 'rspec-rails', '>= 2.0.0.beta.5'
gem 'factory_girl', :git => 'git://github.com/thoughtbot/factory_girl.git', :branch => 'rails3'
2010-04-13 14:26:40 +00:00
gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git'
gem 'cucumber', '0.7.2'
gem 'cucumber-rails'
gem 'spork'
gem 'launchy'
gem 'mocha', :git => 'git://github.com/floehopper/mocha.git'
2010-04-09 12:03:54 +00:00
end