engine/Gemfile

49 lines
1.3 KiB
Ruby
Raw Normal View History

#!/usr/bin/env bundle
# encoding: utf-8
2010-03-29 22:01:47 +00:00
source :rubygems
gemspec # Include gemspec dependencies
2011-05-24 19:23:05 +00:00
# The rest of the dependencies are for use when in the locomotive development environment
2010-04-09 09:23:41 +00:00
group :development do
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
gem 'rspec-rails', '~> 2.8.0' # In order to have rspec tasks and generators
gem 'rspec-cells'
2010-06-03 15:32:40 +00:00
gem 'unicorn' # Using unicorn_rails instead of webrick (default server)
2010-03-29 22:01:47 +00:00
end
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
gem 'launchy'
2012-01-30 10:14:00 +00:00
# gem 'autotest', :platforms => :mri
# gem 'ZenTest', :platforms => :mri
2012-01-30 10:14:00 +00:00
# gem 'growl-glue'
2012-01-30 10:14:00 +00:00
gem 'cucumber-rails'
gem 'rspec-rails', '~> 2.8.0'
gem 'shoulda-matchers'
2012-01-30 10:14:00 +00:00
gem 'factory_girl_rails', '~> 1.6.0'
2010-12-17 10:58:59 +00:00
gem 'pickle'
gem 'mocha', '0.9.12' # :git => 'git://github.com/floehopper/mocha.git'
2012-01-30 10:14:00 +00:00
gem 'capybara'
gem 'xpath', '~> 0.1.4'
2011-06-21 01:41:32 +00:00
2012-01-30 10:14:00 +00:00
gem 'database_cleaner'
end