Skip to content

Instantly share code, notes, and snippets.

@awead
Created May 2, 2012 20:59
Show Gist options
  • Save awead/2580488 to your computer and use it in GitHub Desktop.
Save awead/2580488 to your computer and use it in GitHub Desktop.
New HH gemfile
source 'http://rubygems.org'
gem 'rails', '~>3.2.3'
gem 'blacklight', '~> 3.3.2'
gem 'hydra-head', '~> 4.0.0'
#gem 'hydra-head', :path => "/Users/adamw/Projects/Github/Hydra-Rock/gems/hydra-head"
# We will assume that you're using sqlite3 for testing/demo,
# but in a production setup you probably want to use a real sql database like mysql or postgres
gem 'sqlite3'
# We will assume you're using devise in tutorials/documentation.
# You are free to implement your own User/Authentication solution in its place.
gem 'devise'
group :assets do
gem 'sass-rails', '~> 3.2.0'
gem 'compass-rails', '~> 1.0.0'
gem 'compass-susy-plugin', '~> 0.9.0'
end
group :cucumber do
gem 'cucumber'
gem 'cucumber-rails'
end
# For testing. You will probably want to use these to run the tests you write for your hydra head
group :development, :test do
gem 'rspec-rails', '>=2.9.0'
gem 'jettywrapper'
gem 'jquery-rails'
end # (leave this comment here to catch a stray line inserted by blacklight!)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment