Skip to content

Instantly share code, notes, and snippets.

@jrochkind
Created December 3, 2013 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrochkind/7772683 to your computer and use it in GitHub Desktop.
Save jrochkind/7772683 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '~> 3.2.0'
gem 'blacklight', :github => "projectblacklight/blacklight", :branch => "bootstrap3" #{}"~> 4.0.0" #, :path => "./blacklight"
gem 'kaminari'
gem 'marc', ">= 0.5.0"
# Not really a gem, but organized as a local gem, our marc
# mapping logic for display, checked in at ./marc_display
gem 'marc_display', :path => "./marc_display"
gem "blacklight_range_limit" #, :path => "./blacklight_range_limit"
gem "blacklight_advanced_search" #, :path => "./blacklight_advanced_search"
gem "blacklight_cql" #, :path => "./blacklight_cql"
gem "bento_search", :github => "jrochkind/bento_search", :branch => "master" # for multi-search support, article search, google site, etc.
gem "celluloid", ">= 0.12.0" # used by bento_search for concurrent threaded fetching
gem "ipaddr_range_set" # used for checking if client is local IP for article search access without login
gem "cql-ruby" #, :path => './cql-ruby'
gem "formatted_rails_logger" # for allowing giving formatter to BufferedLogger with severity etc
gem "debugger", :group => :development
gem 'openurl', '>= 0.1.0'
gem 'httpclient'
gem 'mysql2' , '~> 0.3'
gem 'multi_json', "~> 1.4"
group :development do
gem 'capistrano', "~> 2.14" # no cap 3.x yet please
#gem 'capistrano_colors'
# temporary while we're deploying to rvm-ed blacklight.library
gem 'rvm-capistrano'
# guard and tag in git.
gem 'cap_git_tools'
end
# used to have capistrano install cronjobs for
# pull_reserves, maybe more later. Needs to NOT be
# in group development, so it'll actually get installed
# on remote server, so it can be run on remote server.
gem 'whenever', ">= 0.8.0", :require => false
# 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"
gem "uglifier", ">= 1.0.3"
gem "therubyracer"
# makes asset precompile faster, only compiling
# what really needs compiling. May be included
# in future versions of rails out of the box.
gem 'turbo-sprockets-rails3'
end
gem 'jquery-rails'
gem 'bootstrap-sass'
# Turn off those copious useless asset served lines in log in
# development.
gem 'quiet_assets', :group => :development
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'
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment