Skip to content

Instantly share code, notes, and snippets.

@jrochkind
Created September 19, 2011 20:03
Show Gist options
  • Save jrochkind/1227442 to your computer and use it in GitHub Desktop.
Save jrochkind/1227442 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '~> 3.1.0'
gem 'blacklight', :path => "./blacklight"
gem "blacklight_range_limit" #, :path => "./blacklight_range_limit"
gem "blacklight_advanced_search" #, :path => "./blacklight_advanced_search"
gem "blacklight_cql", ">=1.0.1" #, :path => "./blacklight_cql"
gem "formatted_rails_logger" # for allowing giving formatter to BufferedLogger with severity etc
#gem "ruby-debug"
#gem "ruby-prof"
gem 'openurl', '>= 0.1.0'
#gem 'render_inheritable'
gem 'httpclient'
gem 'mysql2' , '~> 0.3'
# Gems used only for assets and not required
# in production environments by default
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', " ~> 3.1.0"
end
gem 'jquery-rails'
gem "rspec-rails", '>= 2.6', :group => [:development, :test]
gem "capybara" # needed for have_selector tests in rspec
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
@jrochkind
Copy link
Author

/*
*= require_self
*

  • Required by Blacklight
    *= require 'yui'
    *= require 'jquery/ui-lightness/jquery-ui-1.8.1.custom.css'
    *= require 'blacklight/blacklight'

*= require_tree .
*/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment