osut 0.4.0 → 0.5.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/pull_request.yml +16 -0
- data/LICENSE +1 -1
- data/lib/osut/utils.rb +4365 -1052
- data/lib/osut/version.rb +2 -2
- data/lib/osut.rb +1 -1
- data/osut.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22ca6888b91cccb62496d3e64b7a85e0b045e8a8e86f97fd98b28b7eac85749e
|
4
|
+
data.tar.gz: fa2d90d16d5d727d99f2ad0b0cb8262a93702003e6173c50140b92062603f2cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d52f369c8ff4be1eca487d8f90f3cecfb1b960b31f4d8887d5abef0912f3b57454cd57fc2af5af8ca4efca856e77dcdad565355738127b1dfc0f0745fdbf5d2
|
7
|
+
data.tar.gz: ae0c2c540701073f1167c39d5478ce6c64c68a9d27e5f1147fac21ff22e7fdcb1e430be5b62abff3b0c5d0649f36d747e8c807acfcf8b3a412d071106fc13c6c
|
@@ -102,3 +102,19 @@ jobs:
|
|
102
102
|
docker exec -t test bundle update
|
103
103
|
docker exec -t test bundle exec rake
|
104
104
|
docker kill test
|
105
|
+
test_370x:
|
106
|
+
runs-on: ubuntu-22.04
|
107
|
+
steps:
|
108
|
+
- name: Check out repository
|
109
|
+
uses: actions/checkout@v2
|
110
|
+
- name: Run Tests
|
111
|
+
run: |
|
112
|
+
echo $(pwd)
|
113
|
+
echo $(ls)
|
114
|
+
docker pull nrel/openstudio:3.7.0
|
115
|
+
docker run --name test --rm -d -t -v $(pwd):/work -w /work nrel/openstudio:3.7.0
|
116
|
+
docker exec -t test pwd
|
117
|
+
docker exec -t test ls
|
118
|
+
docker exec -t test bundle update
|
119
|
+
docker exec -t test bundle exec rake
|
120
|
+
docker kill test
|