Gemfile revision 8570fb0f2396de20946a02ae383389a7276138c7
649N/Asource 'https://rubygems.org'
649N/A
1356N/Agem 'rails', '~> 3.2.18'
649N/Agem 'rack-protection'
1356N/Agem 'secure_headers'
649N/A
649N/Agem 'pry-rails'
919N/A
919N/Agem 'pg'
919N/Agem 'foreigner'
919N/A
919N/Agem 'rdf'
919N/Agem 'rdf-rdfxml'
919N/Agem 'rdf-n3'
919N/A
919N/A# Gems used only for assets and not required
919N/A# in production environments by default.
919N/Agroup :assets do
919N/A gem 'jstree-rails', :git => 'git://github.com/tristanm/jstree-rails.git'
919N/A gem 'sass-rails', '~> 3.2.3'
919N/A gem 'bootstrap-sass', '~> 3.0.0'
919N/A gem 'coffee-rails', '~> 3.2.1'
919N/A gem 'compass', '~> 0.12.1'
919N/A gem 'font_awesome'
649N/A gem 'jquery-rails'
649N/A gem 'jquery-ui-rails'
649N/A gem 'momentjs-rails'
649N/A gem 'd3_rails'
649N/A gem 'therubyracer'
649N/A gem 'uglifier', '>= 1.0.3'
1392N/A gem 'handlebars_assets', '~> 0.14.1'
1392N/A gem 'hamlbars', '~> 2.0'
1392N/A gem 'underscore-rails', '~> 1.6.0'
649N/Aend
649N/A
1356N/Agem 'haml-rails'
649N/A
649N/A# Project configuration
649N/Agem 'rails_config'
649N/A
1356N/A# Fancy Forms
1356N/Agem 'simple_form'
1356N/A
1356N/A# Inherited Resources
970N/Agem 'inherited_resources', '~> 1.4.0'
977N/Agem 'has_scope'
970N/A
970N/A# JSON views
970N/Agem 'rabl'
970N/A
970N/A# XML Parser
970N/Agem 'nokogiri', '~> 1.6'
649N/A
649N/A# Authentication
649N/Agem 'devise', '~> 3.2'
649N/A
649N/A# Authorization
649N/Agem 'cancan', '~> 1.6.7'
649N/A
649N/A# Pagination
649N/Agem 'kaminari'
649N/A
649N/A# Strip spaces in attributes
649N/Agem "strip_attributes", "~> 1.0"
970N/A
970N/A# For distributed ontologies
970N/Agem 'acts_as_tree'
649N/A
# HTTP Client
gem "rest-client"
# Background-Jobs
gem 'sidekiq', '~> 2.17'
gem 'sidetiq', '~> 0.5'
gem 'sidekiq-failures'
gem 'sinatra', require: false, group: [:development, :production]
# Search engine
gem 'sunspot_rails', :git => 'git://github.com/digineo/sunspot.git'
gem 'progress_bar'
# Graph visualization
gem 'ruby-graphviz', "~> 1.0.8"
# Fake-inputs for tests and seeds
gem "faker", "~> 1.2"
# Git
gem 'rugged'
gem 'diffy'
gem 'codemirror-rails', github: 'llwt/codemirror-rails'
gem 'js-routes'
# Ancestry enabling tree structure in category model
# gem 'ancestry'
# Use dagnabit to model categories
gem 'dagnabit'
group :test do
gem 'mocha', require: 'mocha/setup'
gem 'shoulda'
gem "shoulda_routing_macros", "~> 0.1.2"
gem "factory_girl_rails"
# Required for integration tests
gem "capybara"
gem "capybara-webkit"
gem "launchy"
# Recording of HTTP Requests
gem "vcr"
gem "webmock", '~> 1.9.0'
# Code Coverage Analysis
gem 'coveralls', require: false
# Writing test ontologies
gem 'ontology-united', github: '0robustus1/ontology-united'
end
group :development do
# pre-packaged Solr distribution for use in development
gem 'sunspot_solr', :git => 'git://github.com/digineo/sunspot.git'
gem "rails-erd"
gem 'quiet_assets'
end
group :development, :test do
gem 'database_cleaner'
gem 'byebug'
gem 'pry-byebug'
gem 'rspec-rails', '~> 2.0'
gem 'better_errors'
gem 'binding_of_caller'
end
group :production do
gem 'god'
gem 'exception_notification', '~> 4.0'
end
group :deployment do
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-rails'
gem 'capistrano-rvm'
end
group :documentation do
gem 'yard'
gem 'redcarpet'
end