Sha256: 4c8c790d4a68d0bd0d78987ee85b2c86b30bcba394ef9ddf4734ad6a01ef4a9d
Contents?: true
Size: 1.26 KB
Versions: 3
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true 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'] # Delete when these branchesa are merged and released #gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'v0.6.0-rc1' #gem 'openstudio-standards', '= 0.2.17.rc1', :github => 'NREL/openstudio-standards', :ref => '3.5.0_changes' # uncomment when you want CI to use develop branch of extension gem # gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop' # uncomment when you want CI to use develop branch of openstudio-standards gem # gem 'openstudio-standards', github: 'NREL/OpenStudio-standards', branch: 'master' 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
openstudio-ee-0.9.0 | Gemfile |
openstudio-ee-0.8.0 | Gemfile |
openstudio-ee-0.7.0 | Gemfile |