openstudio-analysis 0.4.5 → 1.0.0.pat1
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/.travis.yml +1 -1
- data/CHANGELOG.md +7 -3
- data/Gemfile +1 -0
- data/README.md +53 -47
- data/lib/openstudio/analysis/formulation.rb +1 -1
- data/lib/openstudio/analysis/server_api.rb +143 -246
- data/lib/openstudio/analysis/translator/datapoints.rb +8 -3
- data/lib/openstudio/analysis/translator/excel.rb +16 -4
- data/lib/openstudio/analysis/translator/workflow.rb +106 -0
- data/lib/openstudio/analysis/version.rb +1 -1
- data/lib/openstudio/analysis/workflow_step.rb +5 -2
- data/lib/openstudio/analysis.rb +85 -0
- data/lib/openstudio-analysis.rb +1 -0
- data/openstudio-analysis.gemspec +4 -3
- data/spec/files/workflow/analysis.osa +1334 -0
- data/spec/files/workflow/datapoint_0.osd +63 -0
- data/spec/files/workflow/datapoint_1.osd +63 -0
- data/spec/files/workflow/datapoint_2.osd +63 -0
- data/spec/files/workflow/datapoint_wrong_osa_id.osd +65 -0
- data/spec/openstudio/excel_spec.rb +0 -5
- data/spec/openstudio/osw_spec.rb +618 -0
- metadata +36 -9
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: 0.
|
4
|
+
version: 1.0.0.pat1
|
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-06-
|
11
|
+
date: 2016-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -44,28 +44,28 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '2.3'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '2.3'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rubyzip
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '1.
|
61
|
+
version: '1.2'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '1.
|
68
|
+
version: '1.2'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: semantic
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +94,20 @@ dependencies:
|
|
94
94
|
- - ~>
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: 0.5.5
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: dencity
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ~>
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.1.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.1.0
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: bundler
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,14 +128,14 @@ dependencies:
|
|
114
128
|
requirements:
|
115
129
|
- - ~>
|
116
130
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
131
|
+
version: '11.1'
|
118
132
|
type: :development
|
119
133
|
prerelease: false
|
120
134
|
version_requirements: !ruby/object:Gem::Requirement
|
121
135
|
requirements:
|
122
136
|
- - ~>
|
123
137
|
- !ruby/object:Gem::Version
|
124
|
-
version: '
|
138
|
+
version: '11.1'
|
125
139
|
description: Basic classes for generating the files needed for OpenStudio-Server
|
126
140
|
email:
|
127
141
|
- Nicholas.Long@nrel.gov
|
@@ -146,6 +160,7 @@ files:
|
|
146
160
|
- lib/openstudio/analysis/support_files.rb
|
147
161
|
- lib/openstudio/analysis/translator/datapoints.rb
|
148
162
|
- lib/openstudio/analysis/translator/excel.rb
|
163
|
+
- lib/openstudio/analysis/translator/workflow.rb
|
149
164
|
- lib/openstudio/analysis/version.rb
|
150
165
|
- lib/openstudio/analysis/workflow.rb
|
151
166
|
- lib/openstudio/analysis/workflow_step.rb
|
@@ -216,10 +231,16 @@ files:
|
|
216
231
|
- spec/files/small_seed.osm
|
217
232
|
- spec/files/worker_init/first_file.rb
|
218
233
|
- spec/files/worker_init/second_file.rb
|
234
|
+
- spec/files/workflow/analysis.osa
|
235
|
+
- spec/files/workflow/datapoint_0.osd
|
236
|
+
- spec/files/workflow/datapoint_1.osd
|
237
|
+
- spec/files/workflow/datapoint_2.osd
|
238
|
+
- spec/files/workflow/datapoint_wrong_osa_id.osd
|
219
239
|
- spec/integration/server_api_spec.rb
|
220
240
|
- spec/openstudio/excel_spec.rb
|
221
241
|
- spec/openstudio/formulation_spec.rb
|
222
242
|
- spec/openstudio/hash_spec.rb
|
243
|
+
- spec/openstudio/osw_spec.rb
|
223
244
|
- spec/openstudio/server_api_spec.rb
|
224
245
|
- spec/openstudio/support_files_spec.rb
|
225
246
|
- spec/openstudio/weather_spec.rb
|
@@ -250,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
271
|
version: 1.3.6
|
251
272
|
requirements: []
|
252
273
|
rubyforge_project:
|
253
|
-
rubygems_version: 2.6.
|
274
|
+
rubygems_version: 2.6.6
|
254
275
|
signing_key:
|
255
276
|
specification_version: 4
|
256
277
|
summary: Create JSON, ZIP to communicate with OpenStudio Distributed Analysis in the
|
@@ -318,10 +339,16 @@ test_files:
|
|
318
339
|
- spec/files/small_seed.osm
|
319
340
|
- spec/files/worker_init/first_file.rb
|
320
341
|
- spec/files/worker_init/second_file.rb
|
342
|
+
- spec/files/workflow/analysis.osa
|
343
|
+
- spec/files/workflow/datapoint_0.osd
|
344
|
+
- spec/files/workflow/datapoint_1.osd
|
345
|
+
- spec/files/workflow/datapoint_2.osd
|
346
|
+
- spec/files/workflow/datapoint_wrong_osa_id.osd
|
321
347
|
- spec/integration/server_api_spec.rb
|
322
348
|
- spec/openstudio/excel_spec.rb
|
323
349
|
- spec/openstudio/formulation_spec.rb
|
324
350
|
- spec/openstudio/hash_spec.rb
|
351
|
+
- spec/openstudio/osw_spec.rb
|
325
352
|
- spec/openstudio/server_api_spec.rb
|
326
353
|
- spec/openstudio/support_files_spec.rb
|
327
354
|
- spec/openstudio/weather_spec.rb
|