openstudio-ee 0.11.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.
- checksums.yaml +4 -4
- data/.github/workflows/test-with-openstudio.yml +108 -0
- data/CHANGELOG.md +7 -0
- data/Jenkinsfile +1 -1
- data/LICENSE.md +1 -1
- data/README.md +2 -1
- data/lib/measures/AddDaylightSensors/LICENSE.md +1 -1
- data/lib/measures/AddOverhangsByProjectionFactor/LICENSE.md +1 -1
- data/lib/measures/EnableDemandControlledVentilation/LICENSE.md +1 -1
- data/lib/measures/EnableEconomizerControl/LICENSE.md +1 -1
- data/lib/measures/GLHEProExportLoadsforGroundHeatExchangerSizing/LICENSE.md +1 -1
- data/lib/measures/GLHEProGFunctionImport/LICENSE.md +1 -1
- data/lib/measures/GLHEProSetupExportLoadsforGroundHeatExchangerSizing/LICENSE.md +1 -1
- data/lib/measures/ImproveFanBeltEfficiency/LICENSE.md +1 -1
- data/lib/measures/ImproveMotorEfficiency/LICENSE.md +1 -1
- data/lib/measures/IncreaseInsulationRValueForExteriorWalls/LICENSE.md +1 -1
- data/lib/measures/IncreaseInsulationRValueForExteriorWallsByPercentage/LICENSE.md +1 -1
- data/lib/measures/IncreaseInsulationRValueForRoofs/LICENSE.md +1 -1
- data/lib/measures/IncreaseInsulationRValueForRoofsByPercentage/LICENSE.md +1 -1
- data/lib/measures/ReduceElectricEquipmentLoadsByPercentage/LICENSE.md +1 -1
- data/lib/measures/ReduceLightingLoadsByPercentage/LICENSE.md +1 -1
- data/lib/measures/ReduceNightTimeElectricEquipmentLoads/LICENSE.md +1 -1
- data/lib/measures/ReduceNightTimeLightingLoads/LICENSE.md +1 -1
- data/lib/measures/ReduceSpaceInfiltrationByPercentage/LICENSE.md +1 -1
- data/lib/measures/ReduceVentilationByPercentage/LICENSE.md +1 -1
- data/lib/measures/add_variable_speed_rtu_control_logic/LICENSE.md +1 -1
- data/lib/measures/create_variable_speed_rtu/LICENSE.md +1 -1
- data/lib/measures/fan_assist_night_ventilation/LICENSE.md +1 -1
- data/lib/measures/nze_hvac/LICENSE.md +1 -1
- data/lib/measures/nze_hvac/measure.xml +3 -3
- data/lib/measures/replace_water_heater_mixed_with_thermal_storage_chilled_water/LICENSE.md +1 -1
- data/lib/openstudio/ee_measures/version.rb +1 -1
- data/openstudio-ee.gemspec +6 -3
- metadata +54 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d6311fd2d6aae5440c332f23f18842465008a181bdebd15316982f5744ea73f
|
4
|
+
data.tar.gz: 3b6301be4182158a6d3c39fce1b937a3ef17a7cd7bb0d293e2c854d0ade45250
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 120f71461323e763388edb1fd6e60717cafaba8b3de4a58b08dcb903e4a189b38ce5fcdaa63ec349526ebd163314e908a2776fa9a97e73a7e0efe761e4282be3
|
7
|
+
data.tar.gz: 10c1a57b85d6dcbfed93e70d512403f196459e2e791418db4ba4d30d22f51358c600216878ae30763058ece81b94d2968e71a900c972065e3149f0479a29c100
|
@@ -0,0 +1,108 @@
|
|
1
|
+
# Test with OpenStudio container
|
2
|
+
name: test_with_openstudio
|
3
|
+
on: push
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
test-gems-latest:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
env:
|
9
|
+
BRANCH_NAME: ${{ github.ref_name }}
|
10
|
+
BUILD_NUMBER: ${{ github.run_number }}
|
11
|
+
DEPLOY_PATH: ${{ github.repository }}/${{ github.ref_name }}/${{ github.run_number }} # Path for S3 deployment
|
12
|
+
S3_BUCKET: ext-gem-dashboard
|
13
|
+
|
14
|
+
container: # Define the Docker container for the job. All subsequent steps run inside it.
|
15
|
+
image: nrel/openstudio:3.10.0
|
16
|
+
options: -u root -e "LANG=en_US.UTF-8" # These options are passed to the 'docker run' command internally
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- name: Checkout Repository
|
20
|
+
# The repository will be checked out inside the 'nrel/openstudio:3.10.0' container
|
21
|
+
uses: actions/checkout@v4 # Use v4 for better security and features
|
22
|
+
with:
|
23
|
+
submodules: true # Set to true if your repository uses Git submodules
|
24
|
+
|
25
|
+
- name: Install Node.js and AWS CLI
|
26
|
+
# Install required dependencies for AWS actions to work in the OpenStudio container
|
27
|
+
shell: bash
|
28
|
+
run: |
|
29
|
+
echo "Installing Node.js and AWS CLI..."
|
30
|
+
|
31
|
+
# Update package list
|
32
|
+
apt-get update
|
33
|
+
|
34
|
+
# Install curl and other dependencies
|
35
|
+
apt-get install -y curl unzip
|
36
|
+
|
37
|
+
# Install Node.js (using NodeSource repository for latest LTS)
|
38
|
+
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
|
39
|
+
apt-get install -y nodejs
|
40
|
+
|
41
|
+
# Install AWS CLI v2
|
42
|
+
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
|
43
|
+
unzip awscliv2.zip
|
44
|
+
./aws/install
|
45
|
+
|
46
|
+
# Verify installations
|
47
|
+
echo "Node.js version: $(node --version)"
|
48
|
+
echo "npm version: $(npm --version)"
|
49
|
+
echo "AWS CLI version: $(aws --version)"
|
50
|
+
|
51
|
+
# Clean up
|
52
|
+
rm -rf awscliv2.zip aws/
|
53
|
+
|
54
|
+
- name: Verify Environment and Run Measures
|
55
|
+
# All 'run' commands in this job now execute inside the specified Docker container.
|
56
|
+
shell: bash # Specify the shell if needed, though bash is default for Ubuntu runners
|
57
|
+
run: |
|
58
|
+
# Fix git ownership issue in container
|
59
|
+
git config --global --add safe.directory /__w/openstudio-load-flexibility-measures-gem/openstudio-load-flexibility-measures-gem
|
60
|
+
|
61
|
+
echo "OpenStudio Version: $(openstudio --version)"
|
62
|
+
echo "Ruby Version: $(ruby -v)"
|
63
|
+
echo "Listing OpenStudio Gems: $(openstudio gem_list)"
|
64
|
+
|
65
|
+
# Install dependencies before running tests
|
66
|
+
echo "Installing gem dependencies..."
|
67
|
+
bundle install
|
68
|
+
|
69
|
+
echo "Running spec tests..."
|
70
|
+
rake spec
|
71
|
+
echo "Running measures with verbose output:"
|
72
|
+
# This command will execute within the container.
|
73
|
+
# Ensure that './lib/measures' is the correct path relative to the checkout.
|
74
|
+
openstudio --verbose measure -r ./lib/measures
|
75
|
+
|
76
|
+
# The output for 'test' should now be generated directly into the workspace
|
77
|
+
# within the container, which is mounted from the host.
|
78
|
+
# No 'docker cp' is needed as the workspace is shared.
|
79
|
+
ls -al ./test # Verify the output directory exists and contains files
|
80
|
+
|
81
|
+
- name: Configure AWS Credentials
|
82
|
+
# This step is crucial for authenticating with AWS S3
|
83
|
+
uses: aws-actions/configure-aws-credentials@v4 # Use v4 for updated features
|
84
|
+
with:
|
85
|
+
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
86
|
+
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # Assuming this is your secret name
|
87
|
+
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} # Replace with your AWS region, e.g., us-east-1
|
88
|
+
|
89
|
+
- name: Sync files to S3 with branch and build in path
|
90
|
+
shell: bash
|
91
|
+
run: |
|
92
|
+
echo "Deploying to s3://${{ env.S3_BUCKET }}/${{ env.DEPLOY_PATH }}/"
|
93
|
+
# Ensure './test_results' is the correct source directory for the files to upload to S3.
|
94
|
+
dir_name=$(find -type d -name "test_results")
|
95
|
+
# It must match the output directory from the 'Run Measures' step.
|
96
|
+
aws s3 sync $dir_name s3://${{ env.S3_BUCKET }}/${{ env.DEPLOY_PATH }}/ \
|
97
|
+
--delete \
|
98
|
+
--acl public-read \
|
99
|
+
--cache-control "max-age=0, no-cache, no-store, must-revalidate"
|
100
|
+
echo "S3 sync complete."
|
101
|
+
echo "https://${{ env.S3_BUCKET }}.s3.amazonaws.com/${{ env.DEPLOY_PATH }}/dashboard/index.html"
|
102
|
+
echo dir_name=$dir_name >> $GITHUB_ENV # Save the directory name to an environment variable for later use
|
103
|
+
|
104
|
+
- name: Archive static site as artifact
|
105
|
+
uses: actions/upload-artifact@v4
|
106
|
+
with:
|
107
|
+
name: static-html-artifact
|
108
|
+
path: ${{ env.dir_name }} # Path should be relative to the GitHub workspace, which is shared with the container
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# OpenStudio(R) EE Gem
|
2
2
|
|
3
|
+
## Version 0.12.0
|
4
|
+
* Support for OpenStudio 3.10 (upgrade to standards gem 0.8.2, extension gem 0.9.1)
|
5
|
+
* todo add log after finalize bug fixes for this release
|
6
|
+
|
7
|
+
## Version 0.11.1
|
8
|
+
* Update additional dependencies for OpenStudio 3.9
|
9
|
+
|
3
10
|
## Version 0.11.0
|
4
11
|
* Support for OpenStudio 3.9 (upgrade to standards gem 0.7.0, extension gem 0.8.1)
|
5
12
|
|
data/Jenkinsfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
//Jenkins pipelines are stored in shared libraries. Please see: https://github.com/NREL/cbci_jenkins_libs
|
2
2
|
|
3
|
-
@Library('cbci_shared_libs
|
3
|
+
@Library('cbci_shared_libs') _
|
4
4
|
|
5
5
|
// Build for PR to develop branch only.
|
6
6
|
if ((env.CHANGE_ID) && (env.CHANGE_TARGET) ) { // check if set
|
data/LICENSE.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
data/README.md
CHANGED
@@ -23,7 +23,8 @@ Or install it yourself as:
|
|
23
23
|
|
24
24
|
|OpenStudio EE Gem|OpenStudio|Ruby|
|
25
25
|
|:--------------:|:----------:|:--------:|
|
26
|
-
| 0.
|
26
|
+
| 0.12.0 | 3.10 | 3.2.2 |
|
27
|
+
| 0.11.1 | 3.9 | 3.2.2 |
|
27
28
|
| 0.10.0 | 3.8 | 3.2.2 |
|
28
29
|
| 0.9.0 | 3.7 | 2.7 |
|
29
30
|
| 0.8.0 | 3.6 | 2.7 |
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.1</schema_version>
|
4
4
|
<name>nze_hvac</name>
|
5
5
|
<uid>f060dff2-b28d-4194-a6af-e66d88ddb33c</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>1501d0c9-780d-4c2b-973b-9985d654c11f</version_id>
|
7
|
+
<version_modified>2025-06-20T00:07:29Z</version_modified>
|
8
8
|
<xml_checksum>0E5E4776</xml_checksum>
|
9
9
|
<class_name>NzeHvac</class_name>
|
10
10
|
<display_name>NZEHVAC</display_name>
|
@@ -264,7 +264,7 @@
|
|
264
264
|
<filename>NZEHVAC_Test.rb</filename>
|
265
265
|
<filetype>rb</filetype>
|
266
266
|
<usage_type>test</usage_type>
|
267
|
-
<checksum>
|
267
|
+
<checksum>4522D5A7</checksum>
|
268
268
|
</file>
|
269
269
|
<file>
|
270
270
|
<filename>USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw</filename>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
OpenStudio(R), Copyright (c) 2008,
|
1
|
+
OpenStudio(R), Copyright (c) 2008, 2025 Alliance for Sustainable Energy, LLC.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
data/openstudio-ee.gemspec
CHANGED
@@ -28,11 +28,14 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.required_ruby_version = '~> 3.2.2'
|
29
29
|
|
30
30
|
spec.add_dependency 'bundler', '~> 2.4.10'
|
31
|
-
spec.add_dependency 'openstudio-extension', '~> 0.
|
32
|
-
spec.add_dependency 'openstudio-standards', '0.
|
31
|
+
spec.add_dependency 'openstudio-extension', '~> 0.9.1'
|
32
|
+
spec.add_dependency 'openstudio-standards', '0.8.2'
|
33
33
|
spec.add_dependency 'multipart-post', '2.4.0'
|
34
|
-
spec.add_dependency 'addressable', '2.8.1'
|
35
34
|
|
35
|
+
spec.add_development_dependency 'rubocop', '1.50'
|
36
|
+
spec.add_development_dependency 'rubocop-checkstyle_formatter', '0.6.0'
|
37
|
+
spec.add_development_dependency 'rubocop-performance', '1.20.0'
|
38
|
+
spec.add_development_dependency 'simplecov', '0.22.0'
|
36
39
|
spec.add_development_dependency 'rake', '~> 13.0'
|
37
40
|
spec.add_development_dependency 'rspec', '~> 3.9'
|
38
41
|
spec.add_development_dependency 'octokit', '4.18.0' # for change logs
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openstudio-ee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Goldwasser
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-08-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -31,28 +31,28 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 0.
|
34
|
+
version: 0.9.1
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 0.
|
41
|
+
version: 0.9.1
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: openstudio-standards
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - '='
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 0.
|
48
|
+
version: 0.8.2
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - '='
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 0.
|
55
|
+
version: 0.8.2
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: multipart-post
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -68,19 +68,61 @@ dependencies:
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: 2.4.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
71
|
+
name: rubocop
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - '='
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
77
|
-
type: :
|
76
|
+
version: '1.50'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - '='
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '1.50'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: rubocop-checkstyle_formatter
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 0.6.0
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - '='
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: 0.6.0
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: rubocop-performance
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: 1.20.0
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - '='
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 1.20.0
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: simplecov
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - '='
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 0.22.0
|
119
|
+
type: :development
|
78
120
|
prerelease: false
|
79
121
|
version_requirements: !ruby/object:Gem::Requirement
|
80
122
|
requirements:
|
81
123
|
- - '='
|
82
124
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
125
|
+
version: 0.22.0
|
84
126
|
- !ruby/object:Gem::Dependency
|
85
127
|
name: rake
|
86
128
|
requirement: !ruby/object:Gem::Requirement
|
@@ -131,6 +173,7 @@ executables: []
|
|
131
173
|
extensions: []
|
132
174
|
extra_rdoc_files: []
|
133
175
|
files:
|
176
|
+
- ".github/workflows/test-with-openstudio.yml"
|
134
177
|
- ".gitignore"
|
135
178
|
- ".rspec"
|
136
179
|
- ".rubocop.yml"
|
@@ -291,7 +334,7 @@ licenses: []
|
|
291
334
|
metadata:
|
292
335
|
bug_tracker_uri: https://github.com/NREL/openstudio-ee-gem/issues
|
293
336
|
changelog_uri: https://github.com/NREL/openstudio-ee-gem/blob/develop/CHANGELOG.md
|
294
|
-
source_code_uri: https://github.com/NREL/openstudio-ee-gem/tree/v0.
|
337
|
+
source_code_uri: https://github.com/NREL/openstudio-ee-gem/tree/v0.12.0
|
295
338
|
post_install_message:
|
296
339
|
rdoc_options: []
|
297
340
|
require_paths:
|