Sha256: a5349a1fdcaa170bbc0764ac600a1bee25fc0cbae225f9c381499952d7cb160a
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 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' unless ENV['CI'] end 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sufia-6.0.0.rc4 | Gemfile |