impressionist/tests/test_app/Gemfile

54 lines
1004 B
Ruby

source 'https://rubygems.org'
gem 'rails', '~> 3.2'
gem 'rake', '< 11.0'
gem 'public_suffix', '< 1.5.0'
gem 'impressionist', :path => '../../'
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'jdbc-sqlite3'
gem 'jruby-openssl'
end
platforms :ruby, :mswin, :mingw do
gem 'pg'
gem 'sqlite3'
gem 'mysql2'
gem 'mongoid', '~> 3.1'
gem 'bson_ext'
end
gem 'json'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2'
gem 'coffee-rails', '~> 3.2'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'autotest-notification'
gem 'rspec-rails', '~> 2.14.0'
gem 'spork'
# test/unit has been removed by default in Ruby 2.2.x+
gem 'test-unit'
end
group :test do
gem 'capybara'
gem 'simplecov'
gem 'systemu'
end
gem 'jquery-rails'
gem 'friendly_id', '~> 4.0.9'