forked from projectblacklight/blacklight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
23 lines (17 loc) · 772 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://rubygems.org'
# Please see blacklight.gemspec for dependency information.
gemspec path: File.expand_path('..', __FILE__)
# 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
gem 'engine_cart', '~> 0.3.0'
group :test do
gem "blacklight-marc", "~> 5.0", github: "projectblacklight/blacklight_marc"
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
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)
end