openstudio-extension 0.8.0 → 0.8.1
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 +4 -0
- data/lib/openstudio/extension/runner.rb +1 -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: 9144377a4547713593c7cf889f473d16e75e384d30dea7602ca16a5cc8c39b45
|
4
|
+
data.tar.gz: 7971d8bd04e54c8d310d0b4b142779d7c7b05082239e8c3359f87190ccc8a842
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c1030edb0c51790e7dd3cb1501ac57353d335526391852ec5e2278134984d31c627da4ad07c6934b9d73fa5adaaa6f4d355c2c1bf84936a3d02c7940c0f8396
|
7
|
+
data.tar.gz: 879a0c778856327acb7ba0ff934e0c5809793b51d405e49d6e9c47c78adb95600325132f34ea693741dab540102599d84cf9b201332d83e4fd0138ff9cbd9471
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# OpenStudio(R) Extension Gem
|
2
2
|
|
3
|
+
## Version 0.8.1
|
4
|
+
|
5
|
+
* [#190]( https://github.com/NREL/openstudio-extension-gem/pull/190), Don't raise error when bundle path mismatch occurs
|
6
|
+
|
3
7
|
## Version 0.8.0
|
4
8
|
|
5
9
|
* [#184]( https://github.com/NREL/openstudio-extension-gem/pull/184 ), Removing model methods and model method spec tests. Most model methods moved to openstudio-standards-gem, others moved to OpenStudio C++.
|
@@ -105,7 +105,7 @@ module OpenStudio
|
|
105
105
|
needs_config = false
|
106
106
|
|
107
107
|
if conf_bpath != @bundle_install_path
|
108
|
-
|
108
|
+
puts "Detected mismatch between bundle's configured path #{conf_bpath} and runner configuration #{@bundle_install_path}"
|
109
109
|
needs_config = true
|
110
110
|
end
|
111
111
|
|
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.8.
|
4
|
+
version: 0.8.1
|
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: 2024-
|
14
|
+
date: 2024-07-27 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bcl
|
@@ -182,7 +182,7 @@ licenses: []
|
|
182
182
|
metadata:
|
183
183
|
bug_tracker_uri: https://github.com/NREL/openstudio-extension-gem/issues
|
184
184
|
changelog_uri: https://github.com/NREL/openstudio-extension-gem/blob/develop/CHANGELOG.md
|
185
|
-
source_code_uri: https://github.com/NREL/openstudio-extension-gem/tree/v0.8.
|
185
|
+
source_code_uri: https://github.com/NREL/openstudio-extension-gem/tree/v0.8.1
|
186
186
|
post_install_message:
|
187
187
|
rdoc_options: []
|
188
188
|
require_paths:
|