impressionist/test_app/Gemfile

59 lines
1.0 KiB
Ruby
Raw Normal View History

2012-03-06 23:13:33 +00:00
source 'https://rubygems.org'
gem 'rails', '3.2.2'
2012-03-06 22:56:43 +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
gem 'sqlite3'
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
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'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'