Sha256: ebfc5fa3d9e21b73a4bf5fea1d8c1b8b77b60e55d7da29fa763e8c6fec5cf78b

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

source 'http://rubygems.org'

# Specify your gem's dependencies in urbanopt-geojson-gem.gemspec
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

if allow_local && File.exist?('../urbanopt-core-gem')
  gem 'urbanopt-core', path: '../urbanopt-core-gem'
elsif allow_local
  gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'develop'
end

# simplecov has an unnecessary dependency on native json gem, use fork that does not require this
gem 'simplecov', github: 'NREL/simplecov'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
urbanopt-geojson-0.2.0 Gemfile
urbanopt-geojson-0.2.0.pre3 Gemfile
urbanopt-geojson-0.2.0.pre2 Gemfile
urbanopt-geojson-0.2.0.pre1 Gemfile