Sha256: 431eacae08500937c3877828ed4b4e47cdcdec797d610b8e44d85ca1b2a1c303
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
source 'https://rubygems.org' source 'https://rails-assets.org' # Specify your gem's dependencies in geoblacklight.gemspec gemspec # If we don't specify 2.11.0 we'll end up with sprockets 2.12.0 in the main # Gemfile.lock but since sass-rails gets generated (rails new) into the test app # it'll want sprockets 2.11.0 and we'll have a conflict gem 'sprockets', '2.11.0' # If we don't specify 3.2.15 we'll end up with sass 3.3.2 in the main # Gemfile.lock but since sass-rails gets generated (rails new) into the test app # it'll want sass 3.2.0 and we'll have a conflict gem 'sass', '~> 3.2.0' gem 'bootstrap-sass', ">= 3.2" group :test do # Peg simplecov to < 0.8 until this is resolved: # https://github.com/colszowka/simplecov/issues/281 gem 'simplecov', '~> 0.7.1', require: false gem 'coveralls', require: false end # load local rails test instance Gemfile 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) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
geoblacklight-0.6.0 | Gemfile |
geoblacklight-0.5.1 | Gemfile |
geoblacklight-0.5.0 | Gemfile |