Created
April 17, 2012 15:40
-
-
Save awead/2406927 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'http://rubygems.org' | |
gem 'rails', '~>3.2.2' | |
gem 'blacklight', '~> 3.3.1' | |
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' | |
# 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" | |
end # (leave this comment here to catch a stray line inserted by blacklight!) | |
gem "devise" | |
gem "compass-rails", "~> 1.0.0", :group => :assets | |
gem "compass-susy-plugin", "~> 0.9.0", :group => :assets | |
gem 'sass-rails', '~> 3.2.0' | |
gem 'jquery-rails' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment