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-04-19 14:30:16 +00:00
|
|
|
gem 'custom_fields', :path => '../gems/custom_fields' # for Developers
|
|
|
|
# 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-02-16 00:32:37 +00:00
|
|
|
gem 'rspec-rails', '~> 2.8.0' # 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
|
|
|
|
|
2012-02-01 01:01:42 +00:00
|
|
|
group :assets do
|
|
|
|
gem 'sass-rails', '~> 3.2.4'
|
|
|
|
gem 'coffee-rails', '~> 3.2.2'
|
|
|
|
gem 'uglifier', '~> 1.2.3'
|
|
|
|
gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :branch => 'no_rails_integration'
|
|
|
|
gem 'compass-rails', :git => 'git://github.com/Compass/compass-rails.git'
|
|
|
|
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
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
# gem 'autotest', :platforms => :mri
|
|
|
|
# gem 'ZenTest', :platforms => :mri
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
# gem 'growl-glue'
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2012-03-12 06:04:52 +00:00
|
|
|
gem 'cucumber-rails', :require => false
|
2012-02-16 00:32:37 +00:00
|
|
|
gem 'rspec-rails', '~> 2.8.0'
|
2012-01-28 16:07:11 +00:00
|
|
|
gem 'shoulda-matchers'
|
2012-01-30 10:14:00 +00:00
|
|
|
|
2012-02-16 00:32:37 +00:00
|
|
|
gem 'factory_girl_rails', '~> 1.6.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-04-17 14:13:21 +00:00
|
|
|
gem 'json_spec'
|
|
|
|
|
2012-01-30 10:14:00 +00:00
|
|
|
gem 'database_cleaner'
|
2012-01-30 09:56:38 +00:00
|
|
|
end
|