engine/Gemfile

75 lines
1.8 KiB
Ruby
Raw Normal View History

2010-10-14 14:01:18 +00:00
source :rubygems
2010-03-29 22:01:47 +00:00
# add in all the runtime dependencies
2011-05-24 19:23:05 +00:00
gem 'rake', '0.8.7'
gem 'rails', '>= 3.0.8'
2010-10-14 12:37:14 +00:00
gem 'warden'
gem 'devise', '1.3.4'
gem 'mongoid', '~> 2.0.2'
gem 'bson_ext', '~> 1.3.0'
gem 'locomotive_mongoid_acts_as_tree', '0.1.5.7', :require => 'mongoid_acts_as_tree'
gem 'will_paginate'
2010-10-14 12:37:14 +00:00
gem 'haml', '3.1.2'
gem 'sass', '3.1.2'
2010-10-14 12:37:14 +00:00
gem 'locomotive_liquid', '2.2.2', :require => 'liquid'
gem 'formtastic', '~> 1.2.3'
gem 'inherited_resources', '~> 1.1.2'
2010-10-14 12:37:14 +00:00
gem 'rmagick', '2.12.2'
gem 'locomotive_carrierwave', '0.5.4.beta2'
2010-10-14 12:37:14 +00:00
gem 'custom_fields', '1.0.0.beta.17'
gem 'fog', '0.8.2'
2010-10-14 12:37:14 +00:00
gem 'mimetype-fu'
2011-04-26 22:50:47 +00:00
gem 'actionmailer-with-request', :require => 'actionmailer_with_request'
gem 'heroku', '1.19.1'
2010-10-14 12:37:14 +00:00
gem 'httparty', '>= 0.6.1'
gem 'RedCloth', '4.2.7'
gem 'delayed_job', '2.1.4'
gem 'delayed_job_mongoid', '1.0.2'
gem 'rubyzip'
gem 'locomotive_jammit-s3', :require => 'jammit-s3'
gem 'SystemTimer', :platforms => :ruby_18
2010-03-29 22:01:47 +00:00
# The rest of the dependencies are for use when in the locomotive dev environment
2010-06-03 15:32:40 +00:00
2010-04-09 09:23:41 +00:00
group :development do
# Using unicorn_rails instead of webrick (default server)
gem 'unicorn'
2010-03-29 22:01:47 +00:00
end
group :test, :development do
gem 'linecache', '0.43', :platforms => :mri_18
gem 'ruby-debug', :platforms => :mri_18
gem 'ruby-debug19', :platforms => :mri_19
2011-05-27 22:23:42 +00:00
2011-05-29 21:47:18 +00:00
gem 'bushido_stub', :git => 'git://github.com/did/bushido_stub.git'
end
group :production do
gem 'bushido'
end
2010-04-09 10:22:38 +00:00
group :test do
gem 'autotest'
2010-12-19 20:27:32 +00:00
gem 'ZenTest'
gem 'growl-glue'
2010-12-19 20:27:32 +00:00
gem 'rspec-rails', '2.3.1'
gem 'factory_girl_rails'
2010-12-17 10:58:59 +00:00
gem 'pickle'
2011-02-21 16:46:10 +00:00
gem 'xpath', :git => 'https://github.com/wunderbread/xpath.git'
gem 'capybara'
gem 'database_cleaner'
2010-10-14 12:37:14 +00:00
gem 'cucumber', '0.8.5'
gem 'cucumber-rails'
gem 'spork'
gem 'launchy'
gem 'mocha', :git => 'git://github.com/floehopper/mocha.git'
end