impressionist/tests/test_app/Gemfile

52 lines
952 B
Ruby
Raw Normal View History

2012-03-06 23:13:33 +00:00
source 'https://rubygems.org'
2013-11-29 08:30:37 +00:00
gem 'rails', '~> 3.2'
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'
2013-11-29 08:30:37 +00:00
gem 'mongoid', '~> 3.1'
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
2013-11-29 08:30:37 +00:00
gem 'sass-rails', '~> 3.2'
gem 'coffee-rails', '~> 3.2'
2012-03-06 23:13:33 +00:00
# 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', '~> 2.14.0'
2012-03-06 22:56:43 +00:00
gem 'spork'
# test/unit has been removed by default in Ruby 2.2.x+
gem 'test-unit'
2012-03-06 22:56:43 +00:00
end
group :test do
2013-11-29 08:30:37 +00:00
gem 'capybara'
2012-03-06 23:24:13 +00:00
gem 'simplecov'
gem 'systemu'
2011-02-04 04:13:41 +00:00
end
2012-03-06 23:13:33 +00:00
gem 'jquery-rails'
2015-02-07 18:54:41 +00:00
gem 'friendly_id', '~> 4.0.9'