openstudio_measure_tester 0.2.2 → 0.2.3
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/.rubocop.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/Jenkinsfile +1 -1
- data/README.md +9 -3
- data/lib/openstudio_measure_tester/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3e6ed6462c9fed5d3731e4e716122fd22f0fcef20a1242bfc79c86478ccc27a
|
|
4
|
+
data.tar.gz: fb3703ffb357d1df56b88a80b23c017a9e8274cc0b311d0c8a1bd182234c58d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3152c114390f14e104ef983dd409cce52333d08b28fc7e6ecf5a5babb2f2ceb720df4da474c08bb5b33491f544f510715334d55693c993426ed09f1dc3fb775a
|
|
7
|
+
data.tar.gz: 62517839d65e227ef38ae8326cbe0d2ada479c20266c7fea61e4f1c976f55bd852a2957686955519284c4995ff5c214f672933bc6132d78109a39c3e21594398
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Jenkinsfile
CHANGED
data/README.md
CHANGED
|
@@ -70,16 +70,22 @@ The OpenStudio Measure Tester is a rubygem that exposes rake tasks for testing O
|
|
|
70
70
|
# Testing in Docker
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
+
docker run -it -v $(pwd):/root/test -w '/root' ubuntu:18.04 bash
|
|
74
|
+
|
|
75
|
+
# within container
|
|
73
76
|
apt-get update && apt-get install -y curl
|
|
74
77
|
curl -sLO https://raw.githubusercontent.com/NREL/OpenStudio-server/develop/docker/deployment/scripts/install_ruby.sh
|
|
75
|
-
curl -sLO https://raw.githubusercontent.com/NREL/OpenStudio-server/develop/
|
|
78
|
+
curl -sLO https://raw.githubusercontent.com/NREL/OpenStudio-server/develop/ci/travis/install_openstudio.sh
|
|
76
79
|
chmod +x install_ruby.sh
|
|
77
80
|
chmod +x install_openstudio.sh
|
|
78
81
|
./install_ruby.sh 2.5.5 28a945fdf340e6ba04fc890b98648342e3cccfd6d223a48f3810572f11b2514c
|
|
79
|
-
./install_openstudio.sh 3.0.0
|
|
82
|
+
./install_openstudio.sh 3.0.0 1c9617fa4e
|
|
80
83
|
export RUBYLIB=/usr/Ruby
|
|
81
|
-
```
|
|
82
84
|
|
|
85
|
+
cd /root/test
|
|
86
|
+
bundle update
|
|
87
|
+
bundle exec rake
|
|
88
|
+
```
|
|
83
89
|
|
|
84
90
|
# Releasing
|
|
85
91
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openstudio_measure_tester
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicholas Long
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: exe
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2020-
|
|
14
|
+
date: 2020-05-12 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: git
|
|
@@ -148,7 +148,6 @@ extra_rdoc_files: []
|
|
|
148
148
|
files:
|
|
149
149
|
- ".gitignore"
|
|
150
150
|
- ".rspec"
|
|
151
|
-
- ".rubocop-http---s3-amazonaws-com-openstudio-resources-styles-rubocop-yml"
|
|
152
151
|
- ".rubocop.yml"
|
|
153
152
|
- CHANGELOG.md
|
|
154
153
|
- Gemfile
|
|
@@ -187,7 +186,7 @@ licenses: []
|
|
|
187
186
|
metadata:
|
|
188
187
|
bug_tracker_uri: https://github.com/NREL/OpenStudio-measure-tester-gem/issues
|
|
189
188
|
changelog_uri: https://github.com/NREL/OpenStudio-measure-tester-gem/blob/develop/CHANGELOG.md
|
|
190
|
-
source_code_uri: https://github.com/NREL/OpenStudio-measure-tester-gem/tree/v0.2.
|
|
189
|
+
source_code_uri: https://github.com/NREL/OpenStudio-measure-tester-gem/tree/v0.2.3
|
|
191
190
|
post_install_message:
|
|
192
191
|
rdoc_options: []
|
|
193
192
|
require_paths:
|