Skip to content

Commit

Permalink
Merge pull request #27 from NREL/040_upgrade
Browse files Browse the repository at this point in the history
040 upgrade
  • Loading branch information
nllong authored Mar 17, 2021
2 parents 6bcf934 + 51e6122 commit d1ef794
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ gemspec
# checkout the latest version (develop) from github.
allow_local = ENV['FAVOR_LOCAL_GEMS']

# 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
Expand Down
2 changes: 1 addition & 1 deletion lib/openstudio/ee_measures/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@

module OpenStudio
module EeMeasures
VERSION = '0.3.2'
VERSION = '0.4.0'
end
end
4 changes: 2 additions & 2 deletions openstudio-ee.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '~> 2.5.0'
spec.required_ruby_version = '~> 2.7.0'

spec.add_dependency 'bundler', '~> 2.1'
spec.add_dependency 'openstudio-extension', '~> 0.3.2'
spec.add_dependency 'openstudio-extension', '~> 0.4.0'
spec.add_dependency 'openstudio-standards', '~> 0.2.12'

spec.add_development_dependency 'rake', '~> 13.0'
Expand Down

0 comments on commit d1ef794

Please sign in to comment.