urbanopt-geojson 0.10.0 → 0.11.0
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/.github/workflows/nightly_build.yml +9 -3
- data/CHANGELOG.md +13 -0
- data/CONTRIBUTING.md +2 -2
- data/Gemfile +5 -5
- data/doc_templates/LICENSE.md +1 -1
- data/docs/package-lock.json +3958 -3480
- data/lib/measures/urban_geometry_creation/README.md +1 -1
- data/lib/measures/urban_geometry_creation/measure.rb +2 -2
- data/lib/measures/urban_geometry_creation/measure.xml +7 -7
- data/lib/measures/urban_geometry_creation_zoning/measure.xml +3 -3
- data/lib/urbanopt/geojson/geo_file.rb +4 -1
- data/lib/urbanopt/geojson/schema/thermal_connector_properties.json +3 -5
- data/lib/urbanopt/geojson/schema/thermal_junction_properties.json +2 -3
- data/lib/urbanopt/geojson/version.rb +1 -1
- data/package-lock.json +4706 -1
- data/urbanopt-geojson-gem.gemspec +2 -2
- metadata +6 -7
- data/Jenkinsfile +0 -10
@@ -30,6 +30,6 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.add_development_dependency 'simplecov', '~> 0.18.2'
|
31
31
|
spec.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
32
32
|
|
33
|
-
spec.add_runtime_dependency 'json-schema', '~> 2.
|
34
|
-
spec.add_runtime_dependency 'urbanopt-core', '~> 0.
|
33
|
+
spec.add_runtime_dependency 'json-schema', '~> 2.8'
|
34
|
+
spec.add_runtime_dependency 'urbanopt-core', '~> 0.11.0'
|
35
35
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: urbanopt-geojson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanushree Charan
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2024-01-09 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -88,28 +88,28 @@ dependencies:
|
|
88
88
|
requirements:
|
89
89
|
- - "~>"
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: '2.
|
91
|
+
version: '2.8'
|
92
92
|
type: :runtime
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - "~>"
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: '2.
|
98
|
+
version: '2.8'
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: urbanopt-core
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - "~>"
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version: 0.
|
105
|
+
version: 0.11.0
|
106
106
|
type: :runtime
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - "~>"
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 0.
|
112
|
+
version: 0.11.0
|
113
113
|
description: Library and measures to translate URBANopt GeoJSON format to OpenStudio
|
114
114
|
email:
|
115
115
|
- tanushree.charan@nrel.gov
|
@@ -131,7 +131,6 @@ files:
|
|
131
131
|
- CHANGELOG.md
|
132
132
|
- CONTRIBUTING.md
|
133
133
|
- Gemfile
|
134
|
-
- Jenkinsfile
|
135
134
|
- LICENSE.md
|
136
135
|
- RDOC_MAIN.md
|
137
136
|
- README.md
|
data/Jenkinsfile
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
//Jenkins pipelines are stored in shared libraries. Please see: https://github.com/NREL/cbci_jenkins_libs
|
2
|
-
|
3
|
-
@Library('cbci_shared_libs') _
|
4
|
-
|
5
|
-
// Build for PR to develop branch only.
|
6
|
-
if ((env.CHANGE_ID) && (env.CHANGE_TARGET) ) { // check if set
|
7
|
-
|
8
|
-
openstudio_urbanopt_extension_gems()
|
9
|
-
|
10
|
-
}
|