Sha256: 386d64c3330c9781e61088dd5f45d869ff6c52db092ae728fbc55f81b59d4acf
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
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.exists?('../OpenStudio-extension-gem') gem 'openstudio-extension', path: '../OpenStudio-extension-gem' else gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop' end gem 'openstudio_measure_tester', '= 0.3.1' # This includes the dependencies for running unit tests, coverage, and rubocop # simplecov has an unnecessary dependency on native json gem, use fork that does not require this gem 'simplecov', '~> 0.18.2' # pin this dependency to avoid unicode_normalize error gem 'addressable', '2.8.1' # pin this dependency to avoid using racc dependency (which has native extensions) gem 'parser', '3.2.2.2'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
openstudio-geb-0.3.3 | Gemfile |
openstudio-geb-0.3.2 | Gemfile |
openstudio-geb-0.3.1r | Gemfile |