Sha256: faedb349b6114e2150299cfc28ae483d63b1f4a75e1cd3a74f93bbb37f1dcb05

Contents?: true

Size: 917 Bytes

Versions: 9

Compression:

Stored size: 917 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.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'

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
openstudio-geb-0.3.0 Gemfile
openstudio-geb-0.2.1 Gemfile
openstudio-geb-0.2.0 Gemfile
openstudio-geb-0.1.1 Gemfile
openstudio-geb-0.1.0 Gemfile
openstudio-geb-0.0.3r Gemfile
openstudio-geb-0.0.3 Gemfile
openstudio-geb-0.0.2 Gemfile
openstudio-geb-0.0.1 Gemfile