2010-10-14 14:01:18 +00:00
|
|
|
source :rubygems
|
2010-03-29 22:01:47 +00:00
|
|
|
|
2010-09-28 06:04:40 +00:00
|
|
|
# add in all the runtime dependencies
|
2010-09-28 07:18:10 +00:00
|
|
|
|
2011-05-24 19:23:05 +00:00
|
|
|
gem 'rake', '0.8.7'
|
|
|
|
|
2011-05-16 21:06:46 +00:00
|
|
|
gem 'rails', '>= 3.0.7'
|
2010-09-28 07:18:10 +00:00
|
|
|
|
2010-10-14 12:37:14 +00:00
|
|
|
gem 'warden'
|
|
|
|
gem 'devise', '= 1.1.3'
|
2010-07-30 21:34:35 +00:00
|
|
|
|
2011-05-16 21:06:46 +00:00
|
|
|
gem 'mongoid', '~> 2.0.1'
|
2011-04-05 23:29:11 +00:00
|
|
|
gem 'bson_ext', '~> 1.3.0'
|
2011-02-12 19:22:11 +00:00
|
|
|
gem 'locomotive_mongoid_acts_as_tree', '0.1.5.5', :require => 'mongoid_acts_as_tree'
|
2010-10-28 23:36:45 +00:00
|
|
|
gem 'will_paginate'
|
2010-10-14 12:37:14 +00:00
|
|
|
|
2011-02-04 09:39:23 +00:00
|
|
|
gem 'haml', '3.0.25'
|
2010-10-14 12:37:14 +00:00
|
|
|
gem 'locomotive_liquid', '2.2.2', :require => 'liquid'
|
2011-02-04 09:39:23 +00:00
|
|
|
gem 'formtastic', '~> 1.2.3'
|
|
|
|
gem 'inherited_resources', '~> 1.1.2'
|
2010-10-14 12:37:14 +00:00
|
|
|
|
2011-02-04 09:39:23 +00:00
|
|
|
gem 'rmagick', '2.12.2'
|
2011-03-05 23:17:50 +00:00
|
|
|
gem 'locomotive_carrierwave', '0.5.0.1.beta3', :require => 'carrierwave'
|
2010-10-14 12:37:14 +00:00
|
|
|
|
2011-05-24 19:23:05 +00:00
|
|
|
gem 'custom_fields', '1.0.0.beta.13'
|
2010-10-17 01:18:41 +00:00
|
|
|
gem 'fog', '0.3.7'
|
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'
|
2011-02-12 14:00:57 +00:00
|
|
|
gem 'RedCloth', '4.2.7'
|
2011-03-08 15:05:07 +00:00
|
|
|
gem 'delayed_job', '2.1.4'
|
2011-01-26 13:07:33 +00:00
|
|
|
gem 'delayed_job_mongoid', '1.0.2'
|
2010-09-22 22:59:30 +00:00
|
|
|
gem 'rubyzip'
|
2011-01-03 20:53:33 +00:00
|
|
|
gem 'locomotive_jammit-s3', :require => 'jammit-s3'
|
2011-04-05 23:29:11 +00:00
|
|
|
gem 'SystemTimer', :platforms => :ruby_18
|
2010-03-29 22:01:47 +00:00
|
|
|
|
2010-09-28 06:04:40 +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
|
2010-12-14 17:00:12 +00:00
|
|
|
# Using unicorn_rails instead of webrick (default server)
|
|
|
|
gem 'unicorn'
|
2010-03-29 22:01:47 +00:00
|
|
|
end
|
|
|
|
|
2010-07-23 20:04:27 +00:00
|
|
|
group :test, :development do
|
2011-05-27 15:19:20 +00:00
|
|
|
gem 'ruby-debug', :platforms => :mri_18
|
|
|
|
gem 'ruby-debug19', :platforms => :mri_19
|
2011-05-27 22:23:42 +00:00
|
|
|
|
2011-05-28 17:52:36 +00:00
|
|
|
gem 'bushido_stub', :path => '../gems/bushido_stub'
|
|
|
|
# gem 'bushido'
|
2011-05-27 15:19:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :production do
|
|
|
|
gem 'bushido'
|
2010-07-23 20:04:27 +00:00
|
|
|
end
|
|
|
|
|
2010-04-09 10:22:38 +00:00
|
|
|
group :test do
|
2010-08-20 00:31:01 +00:00
|
|
|
gem 'autotest'
|
2010-12-19 20:27:32 +00:00
|
|
|
gem 'ZenTest'
|
2010-08-20 00:31:01 +00:00
|
|
|
gem 'growl-glue'
|
2010-12-19 20:27:32 +00:00
|
|
|
gem 'rspec-rails', '2.3.1'
|
2010-07-21 23:35:30 +00:00
|
|
|
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'
|
2010-07-21 23:35:30 +00:00
|
|
|
gem 'capybara'
|
2010-07-31 08:27:21 +00:00
|
|
|
|
2010-07-26 08:19:42 +00:00
|
|
|
gem 'database_cleaner'
|
2010-10-14 12:37:14 +00:00
|
|
|
gem 'cucumber', '0.8.5'
|
2010-07-21 23:35:30 +00:00
|
|
|
gem 'cucumber-rails'
|
|
|
|
gem 'spork'
|
|
|
|
gem 'launchy'
|
|
|
|
gem 'mocha', :git => 'git://github.com/floehopper/mocha.git'
|
2011-02-04 06:35:09 +00:00
|
|
|
end
|