openstudio-analysis 1.0.0.rc8 → 1.0.0.rc9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3d781c43755cc72f3991b314f18c55fa1153ab16
4
- data.tar.gz: a63c19f7f7d61ed3495f0aaa3f9a331485f0195c
3
+ metadata.gz: 0926ab12d7415a8a23c8c9b6c8345338e3f81dc8
4
+ data.tar.gz: 37fc5579b3f27dc9ef8f12321ea2fdd2e94f503a
5
5
  SHA512:
6
- metadata.gz: a577cc8a395428aa151fd8f0d455c44d4ef314db62f8deabe84ee1719a7c22410827ea51956462f04121ee4ad89347a28cb7ae2a848065bb0925a573553a61c1
7
- data.tar.gz: 68b59faaf4cad8653bee55a81a9d61d636d839f9432e3f5535d68957c56b711f6efea2b710d4ed858bbe91d31a11602c4ddbb927aeb472b4e80cfb0d77c00c2f
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[:output]
273
- path = File.expand_path(File.join(@root_path, config_hash[:output].to_s))
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[:output]}"
277
+ fail "Could not find output json: #{config_hash[:output_json]}"
278
278
  end
279
279
  end
280
280
 
@@ -1,5 +1,5 @@
1
1
  module OpenStudio
2
2
  module Analysis
3
- VERSION = '1.0.0.rc8'
3
+ VERSION = '1.0.0.rc9'
4
4
  end
5
5
  end
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.rc8
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-07 00:00:00.000000000 Z
11
+ date: 2016-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday