Sha256: 93c4d06e1ba52fafe388459c30179b85dfc69cacde720b133c0c303f543a96f7
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
source 'https://rubygems.org' # Please see sufia.gemspec for dependency information. gemspec # Required for doing pagination inside an engine. See https://github.com/amatsuda/kaminari/pull/322 gem 'kaminari', github: 'harai/kaminari', branch: 'route_prefix_prototype' gem 'sufia-models', path: './sufia-models' gem 'slop', '~> 3.6.0' # This just helps us generate a valid Gemfile.lock when Rails 4.2 is installed (which requires byebug which has a dependency on slop) group :development, :test do gem "simplecov", require: false gem "byebug", require: false end # (leave this comment here to catch a stray line inserted by blacklight!) file = File.expand_path("Gemfile", ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path("../spec/internal", __FILE__)) if File.exists?(file) puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` instance_eval File.read(file) else gem 'rails', ENV['RAILS_VERSION'] if ENV['RAILS_VERSION'] if ENV['RAILS_VERSION'] and ENV['RAILS_VERSION'] !~ /^4.2/ gem 'sass-rails', "< 5.0" else gem 'responders', "~> 2.0" gem 'sass-rails', ">= 5.0" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sufia-5.0.0 | Gemfile |
sufia-5.0.0.rc1 | Gemfile |