Sha256: 78ee3e9692b71e4f30d403bde5bba36ec255e3eda25cc3efb6a5ecbda4ad5fbb

Contents?: true

Size: 1003 Bytes

Versions: 3

Compression:

Stored size: 1003 Bytes

Contents

# This Gemfile comes from hydra-head/test_support/etc/Gemfile
# It's copied into the hydra-head test app by the rake hyhead:setup_test_app task

source 'http://rubygems.org'

gem "rails", '~> 3.2.2'

gem 'blacklight', '~>3.4.1'

platforms :jruby do
  gem 'jruby-openssl'
  gem 'activerecord-jdbcsqlite3-adapter'
  gem 'jdbc-sqlite3'
  gem 'therubyrhino'
end

platforms :ruby do
 gem 'sqlite3'
 gem 'execjs'
 gem 'therubyracer'
end

gem 'hydra-head', :path => '../../'
gem 'devise'
gem 'jettywrapper'

# For testing
group :development, :test do 
       gem 'rspec-rails'
       gem 'mocha'
       gem 'cucumber-rails', :require => false
       gem 'capybara'
       gem 'factory_girl', '~> 2.6.0'
       gem 'rest-client'
       gem 'solrizer-fedora', '>=2.1.0'
end

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.4'
  gem 'coffee-rails', '~> 3.2.2'
  gem 'uglifier', '>= 1.2.3'
  gem 'jquery-rails', '>= 1.0.12'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hydra-head-4.1.0 test_support/etc/Gemfile
hydra-head-4.0.3 test_support/etc/Gemfile
hydra-head-4.0.2 test_support/etc/Gemfile