openstudio-extension 0.9.2 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile +0 -7
- data/README.md +1 -0
- data/lib/openstudio/extension/runner.rb +3 -1
- data/lib/openstudio/extension/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b78462fa83084d08aa780867236d75633d04a2b10047de9ad31350b86cc5909
|
4
|
+
data.tar.gz: b4e30962edd6d38341d289acfcab45481f8828242648ce616623d62567151470
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5255f922d907587c785827bd899d00eac88680f16957665d8af8c675460cee11799f1a2f8f2c97db53ff65482d12f0366ef0e47ce0a8567a60fe4dc8cb3ed4fe
|
7
|
+
data.tar.gz: 184a5e79e2e67c29ded570afc7164daa1194b2061f62bec5259c80fadccc46462387a8072b0d56590417fb36a0c2ec4d9a2e693e770764916ab923963c809757
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
# OpenStudio(R) Extension Gem
|
2
|
+
|
3
|
+
## Version 0.9.4
|
4
|
+
* Updated runner to run bundle install instead of bundle update
|
5
|
+
|
6
|
+
## Version 0.9.3
|
7
|
+
* Corrected the gemfile to remove rubocop-performance
|
8
|
+
|
2
9
|
## Version 0.9.2
|
3
10
|
* Updating LICENSE.md in doc_templates to use 2025 for the year
|
4
11
|
* Fixed some rubocop offenses
|
data/Gemfile
CHANGED
@@ -1,15 +1,8 @@
|
|
1
1
|
source 'http://rubygems.org'
|
2
2
|
|
3
|
-
# Specify your gem's dependencies in openstudio-extension.# gemspec commented out to avoid circular dependency during bundle install
|
4
|
-
# gemspec
|
5
|
-
|
6
|
-
# Specify your gem's dependencies in openstudio-extension.gemspec
|
7
|
-
|
8
3
|
# line below used for testing when need to test against branch instead of release of standards. Should be commented out prior to merge to develop
|
9
4
|
# gem 'openstudio-standards', github: 'NREL/openstudio-standards', branch: 'fix/901_2016_2019_properties' # for os_lib unit tests
|
10
5
|
|
11
6
|
gemspec
|
12
7
|
|
13
8
|
# gem 'openstudio-standards', '= 0.2.17.rc1', :github => 'NREL/openstudio-standards', :ref => '3.5.0_changes'
|
14
|
-
|
15
|
-
gem 'rubocop-performance', '~> 1.20'
|
data/README.md
CHANGED
@@ -142,7 +142,9 @@ module OpenStudio
|
|
142
142
|
|
143
143
|
puts "needs_update = #{needs_update}"
|
144
144
|
if needs_update
|
145
|
-
|
145
|
+
# KAF: we are no longer updating dependencies here; we are installing instead. If a user already has their
|
146
|
+
# gems installed, it shouldn't download anything new and should save us from some unwanted dependency updates
|
147
|
+
run_command('bundle install', get_clean_env)
|
146
148
|
end
|
147
149
|
ensure
|
148
150
|
Dir.chdir(@original_dir)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openstudio-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katherine Fleming
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date: 2025-
|
14
|
+
date: 2025-10-03 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bcl
|
@@ -224,7 +224,7 @@ licenses: []
|
|
224
224
|
metadata:
|
225
225
|
bug_tracker_uri: https://github.com/NREL/openstudio-extension-gem/issues
|
226
226
|
changelog_uri: https://github.com/NREL/openstudio-extension-gem/blob/develop/CHANGELOG.md
|
227
|
-
source_code_uri: https://github.com/NREL/openstudio-extension-gem/tree/v0.9.
|
227
|
+
source_code_uri: https://github.com/NREL/openstudio-extension-gem/tree/v0.9.4
|
228
228
|
post_install_message:
|
229
229
|
rdoc_options: []
|
230
230
|
require_paths:
|