forked from LBNL-ETA/OpenStudio-Occupant-Variability-Gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
28 lines (22 loc) · 1.23 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
source "http://rubygems.org"
allow_local = false
# Specify your gem's dependencies
gemspec
if allow_local && File.exists?('../OpenStudio-extension-gem')
# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
else
gem 'openstudio-extension', path: 'https://github.com/NREL/OpenStudio-extension-gem', tag: 'v0.1.6'
end
# if allow_local && File.exists?('../OpenStudio-Standards')
# # gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
# puts 'Use local version of OpenStudio-Standards'
# gem 'openstudio-standards', path: '../OpenStudio-Standards'
# else
# puts 'Use remote version of OpenStudio-Standards'
# gem 'openstudio-standards', github: 'NREL/OpenStudio-Standards', tag: 'v0.2.9'
# end
gem 'openstudio_measure_tester', '= 0.1.7' # This includes the dependencies for running unit tests, coverage, and rubocop
#gem 'openstudio_measure_tester', :github => 'NREL/OpenStudio-measure-tester-gem', :ref => '273d1f1a5c739312688ea605ef4a5b6e7325332c'
# simplecov has an unneccesary dependency on native json gem, use fork that does not require this
gem 'simplecov', path: 'https://github.com/NREL/simplecov'