impressionist/tests/test_app/Gemfile

49 lines
852 B
Ruby
Raw Normal View History

2012-03-06 23:13:33 +00:00
source 'https://rubygems.org'
gem 'rails', '3.2.12'
2012-03-06 23:13:33 +00:00
gem 'impressionist', :path => '../../'
2011-02-04 04:13:41 +00:00
2012-03-13 00:08:59 +00:00
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'jdbc-sqlite3'
gem 'jruby-openssl'
2012-03-13 00:08:59 +00:00
end
platforms :ruby, :mswin, :mingw do
2012-03-15 12:42:32 +00:00
gem 'pg'
2012-03-13 00:08:59 +00:00
gem 'sqlite3'
2013-07-10 01:36:10 +00:00
gem 'mysql2'
gem "mongoid", "~> 3.1.4"
gem 'bson_ext'
2012-03-13 00:08:59 +00:00
end
2012-03-06 23:13:33 +00:00
gem 'json'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
2012-03-06 22:56:43 +00:00
group :development, :test do
gem 'autotest-notification'
gem 'rspec-rails'
gem 'spork'
end
group :test do
2012-03-06 23:24:13 +00:00
gem 'simplecov'
gem 'systemu'
gem 'capybara', '~> 2.0.0'
2011-02-04 04:13:41 +00:00
end
2012-03-06 23:13:33 +00:00
gem 'jquery-rails'
2012-03-06 23:13:33 +00:00