Sha256: e0655dacc588f3caeb55177d0c2bfd5a787ea00e2caf8c17986ff994fa826fb8
Contents?: true
Size: 820 Bytes
Versions: 5
Compression:
Stored size: 820 Bytes
Contents
source 'http://rubygems.org' gemspec # Local gems are useful when developing and integrating the various dependencies. # To favor the use of local gems, set the following environment variable: # Mac: export FAVOR_LOCAL_GEMS=1 # Windows: set FAVOR_LOCAL_GEMS=1 # Note that if allow_local is true, but the gem is not found locally, then it will # checkout the latest version (develop) from github. allow_local = ENV['FAVOR_LOCAL_GEMS'] if allow_local && File.exist?('../OpenStudio-extension-gem') gem 'openstudio-extension', path: '../OpenStudio-extension-gem' elsif allow_local gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop' end # simplecov has an unneccesary dependency on native json gem, use fork that does not require this gem 'simplecov', github: 'NREL/simplecov'
Version data entries
5 entries across 5 versions & 2 rubygems