urbanopt-reopt 0.10.0 → 0.12.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.
@@ -5,6 +5,6 @@
5
5
 
6
6
  module URBANopt # :nodoc:
7
7
  module REopt # :nodoc:
8
- VERSION = '0.10.0'.freeze
8
+ VERSION = '0.12.0'.freeze
9
9
  end
10
10
  end
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ['']
10
10
  spec.licenses = 'Nonstandard'
11
11
 
12
- spec.summary = 'Accessing the REopt Lite API within OpenStudio workflows.'
13
- spec.description = 'Classes and measures for utilizing the REopt Lite API within OpenStudio workflows.'
12
+ spec.summary = 'Accessing the REopt API within OpenStudio workflows.'
13
+ spec.description = 'Classes and measures for utilizing the REopt API within OpenStudio workflows.'
14
14
  spec.homepage = 'https://github.com/urbanopt/urbanopt-reopt-gem'
15
15
 
16
16
  # Specify which files should be added to the gem when it is released.
@@ -27,9 +27,11 @@ Gem::Specification.new do |spec|
27
27
  spec.add_development_dependency 'bundler', '~> 2.1'
28
28
  spec.add_development_dependency 'rake', '~> 13.0'
29
29
  spec.add_development_dependency 'rspec', '~> 3.9'
30
+ spec.add_development_dependency 'rubocop', '~> 1.15.0'
30
31
  spec.add_development_dependency 'simplecov', '~> 0.18.2'
31
32
  spec.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
33
+ spec.add_development_dependency 'openstudio-extension', '~> 0.7.1'
32
34
 
33
35
  spec.add_dependency 'certified', '~> 1'
34
- spec.add_dependency 'urbanopt-scenario', '~> 0.10.0'
36
+ spec.add_dependency 'urbanopt-scenario', '~> 0.12.0'
35
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: urbanopt-reopt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ''
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-20 00:00:00.000000000 Z
11
+ date: 2024-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.9'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.15.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.15.0
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: simplecov
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +94,20 @@ dependencies:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
96
  version: 0.8.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: openstudio-extension
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.7.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.7.1
83
111
  - !ruby/object:Gem::Dependency
84
112
  name: certified
85
113
  requirement: !ruby/object:Gem::Requirement
@@ -100,16 +128,15 @@ dependencies:
100
128
  requirements:
101
129
  - - "~>"
102
130
  - !ruby/object:Gem::Version
103
- version: 0.10.0
131
+ version: 0.12.0
104
132
  type: :runtime
105
133
  prerelease: false
106
134
  version_requirements: !ruby/object:Gem::Requirement
107
135
  requirements:
108
136
  - - "~>"
109
137
  - !ruby/object:Gem::Version
110
- version: 0.10.0
111
- description: Classes and measures for utilizing the REopt Lite API within OpenStudio
112
- workflows.
138
+ version: 0.12.0
139
+ description: Classes and measures for utilizing the REopt API within OpenStudio workflows.
113
140
  email:
114
141
  - ''
115
142
  executables: []
@@ -119,6 +146,7 @@ files:
119
146
  - ".github/ISSUE_TEMPLATE/bug_report.md"
120
147
  - ".github/ISSUE_TEMPLATE/feature_request.md"
121
148
  - ".github/pull_request_template.md"
149
+ - ".github/release.yml"
122
150
  - ".github/workflows/nightly_ci_build.yml"
123
151
  - ".gitignore"
124
152
  - ".rakeTasks"
@@ -128,7 +156,6 @@ files:
128
156
  - CHANGELOG.md
129
157
  - CONTRIBUTING.md
130
158
  - Gemfile
131
- - Jenkinsfile
132
159
  - LICENSE.md
133
160
  - RDOC_MAIN.md
134
161
  - README.md
@@ -195,5 +222,5 @@ requirements: []
195
222
  rubygems_version: 3.1.4
196
223
  signing_key:
197
224
  specification_version: 4
198
- summary: Accessing the REopt Lite API within OpenStudio workflows.
225
+ summary: Accessing the REopt API within OpenStudio workflows.
199
226
  test_files: []
data/Jenkinsfile DELETED
@@ -1,10 +0,0 @@
1
- //Jenkins pipelines are stored in shared libaries. Please see: https://github.com/tijcolem/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
- urbanopt_reopt_gem()
9
-
10
- }