2012-01-28 16:07:11 +00:00
|
|
|
#!/usr/bin/env bundle
|
|
|
|
# encoding: utf-8
|
2010-03-29 22:01:47 +00:00
|
|
|
|
2012-01-28 16:07:11 +00:00
|
|
|
source :rubygems
|
2010-09-28 07:18:10 +00:00
|
|
|
|
2012-01-28 16:07:11 +00:00
|
|
|
gemspec # Include gemspec dependencies
|
2011-05-24 19:23:05 +00:00
|
|
|
|
2012-01-28 16:07:11 +00:00
|
|
|
# The rest of the dependencies are for use when in the locomotive development environment
|
2010-09-28 07:18:10 +00:00
|
|
|
|
2010-04-09 09:23:41 +00:00
|
|
|
group :development do
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'custom_fields', :path => '../gems/custom_fields' # Locale
|
|
|
|
# gem 'custom_fields', :git => 'git://github.com/locomotivecms/custom_fields.git', :branch => '2.0.0.rc' # Branch on Github
|
2011-10-30 12:17:05 +00:00
|
|
|
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'rspec-rails', '2.6.1' # In order to have rspec tasks and generators
|
2011-07-26 00:00:35 +00:00
|
|
|
gem 'rspec-cells'
|
2010-06-03 15:32:40 +00:00
|
|
|
|
2011-06-29 01:05:07 +00:00
|
|
|
gem 'unicorn' # Using unicorn_rails instead of webrick (default server)
|
2010-03-29 22:01:47 +00:00
|
|
|
end
|
|
|
|
|
2010-04-09 10:22:38 +00:00
|
|
|
group :test do
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'launchy'
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2011-10-16 05:21:12 +00:00
|
|
|
gem 'autotest', :platforms => :mri
|
|
|
|
gem 'ZenTest', :platforms => :mri
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2010-08-20 00:31:01 +00:00
|
|
|
gem 'growl-glue'
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'cucumber-rails'
|
2011-06-29 01:10:20 +00:00
|
|
|
gem 'rspec-rails', '2.6.1'
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'shoulda-matchers'
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2012-01-07 01:49:23 +00:00
|
|
|
gem 'factory_girl_rails', '~> 1.3.0'
|
2010-12-17 10:58:59 +00:00
|
|
|
gem 'pickle'
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'mocha', '0.9.12' # :git => 'git://github.com/floehopper/mocha.git'
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2010-07-21 23:35:30 +00:00
|
|
|
gem 'capybara'
|
2011-06-29 01:05:07 +00:00
|
|
|
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'xpath', '~> 0.1.4'
|
2011-06-21 01:41:32 +00:00
|
|
|
|
2012-01-30 10:14:00 +00:00
|
|
|
gem 'database_cleaner'
|
2012-01-30 09:56:38 +00:00
|
|
|
end
|