openstudio-analysis 1.0.0.rc8 → 1.0.0.rc9
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/analysis/translator/datapoints.rb +3 -3
- data/lib/openstudio/analysis/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0926ab12d7415a8a23c8c9b6c8345338e3f81dc8
|
|
4
|
+
data.tar.gz: 37fc5579b3f27dc9ef8f12321ea2fdd2e94f503a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 160ab740fecfcf67ad579edc96ba90e5d27a33bb731e2257ea1b0f6fe20d1afbbc8890e12e1ade07b034574713d7f18bd71d094a46272db0d7b427628d529492
|
|
7
|
+
data.tar.gz: a09acd3014f457d158cd553333c12bc994f4fe50f70ea9b04bd5b0419716f4107dba5841f47fa306786a57e0070bfd1d5f4fc270af9b2b9e2c49124dde21ca5f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
OpenStudio Analysis Gem Change Log
|
|
2
2
|
==================================
|
|
3
3
|
|
|
4
|
+
Version 1.0.0.rc9
|
|
5
|
+
-----------------
|
|
6
|
+
* Fix bug in batch datapoints to look for outputs_json, not outputs when importing the definition of the outputs JSON file.
|
|
7
|
+
|
|
4
8
|
Version 1.0.0.rc8
|
|
5
9
|
-----------------
|
|
6
10
|
* Allow "None" as an argument in batch datapoints. This will allow the measure to be added without setting any of the arguments. Useful for adding Reporting Measures to the workflow.
|
|
@@ -269,12 +269,12 @@ module OpenStudio
|
|
|
269
269
|
end
|
|
270
270
|
|
|
271
271
|
# Assign optional attributes
|
|
272
|
-
if config_hash[:
|
|
273
|
-
path = File.expand_path(File.join(@root_path, config_hash[:
|
|
272
|
+
if config_hash[:output_json]
|
|
273
|
+
path = File.expand_path(File.join(@root_path, config_hash[:output_json].to_s))
|
|
274
274
|
if File.exist? path
|
|
275
275
|
@outputs = MultiJson.load(File.read(path))
|
|
276
276
|
else
|
|
277
|
-
fail "Could not find output json: #{config_hash[:
|
|
277
|
+
fail "Could not find output json: #{config_hash[:output_json]}"
|
|
278
278
|
end
|
|
279
279
|
end
|
|
280
280
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openstudio-analysis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.
|
|
4
|
+
version: 1.0.0.rc9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicholas Long
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-11-
|
|
11
|
+
date: 2016-11-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|