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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9867e6717d3094bdd9dd0b6a0cb1c26faf5b0bf896ffb059c22180bf8941a83c
4
- data.tar.gz: 983cf95a54979193bd151c0724fd3350976d9069007a9df22af60930815b2b08
3
+ metadata.gz: a3e6ed6462c9fed5d3731e4e716122fd22f0fcef20a1242bfc79c86478ccc27a
4
+ data.tar.gz: fb3703ffb357d1df56b88a80b23c017a9e8274cc0b311d0c8a1bd182234c58d8
5
5
  SHA512:
6
- metadata.gz: 910b72abac5dd072ce61e728432b7d8d69ddf36797c154e828fbf9a100a82411351ddea79c2052f5f34334d84b47d751ccde9ec14dde79bb22b7df67dca6f28c
7
- data.tar.gz: 16f2c381ae282e4b45bd16b9d1dbcfe912e8ed91b1929a635b29961811b6d0892d64311e6cd202a5f49f8a5b40f147ea3189f1d0cf11a66c09823b7e46a9fc7d
6
+ metadata.gz: 3152c114390f14e104ef983dd409cce52333d08b28fc7e6ecf5a5babb2f2ceb720df4da474c08bb5b33491f544f510715334d55693c993426ed09f1dc3fb775a
7
+ data.tar.gz: 62517839d65e227ef38ae8326cbe0d2ada479c20266c7fea61e4f1c976f55bd852a2957686955519284c4995ff5c214f672933bc6132d78109a39c3e21594398
@@ -2,4 +2,4 @@ AllCops:
2
2
  Exclude:
3
3
  - 'spec/test_measures/**/*'
4
4
  inherit_from:
5
- - http://s3.amazonaws.com/openstudio-resources/styles/rubocop.yml
5
+ - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v3.yml
@@ -1,3 +1,8 @@
1
+ # Version 0.2.3
2
+
3
+ * Use updated rubocop style (v3)
4
+ * Update instructions on running tests in Docker.
5
+
1
6
  # Version 0.2.2
2
7
 
3
8
  * Revert to using Rubocop 0.54 to support non-native gems in OpenStudio CLI.
@@ -1,4 +1,4 @@
1
- //Jenkins pipelines are stored in shared libaries. Please see: https://github.com/NREL/cbci_jenkins_libs
1
+ //Jenkins pipelines are stored in shared libraries. Please see: https://github.com/NREL/cbci_jenkins_libs
2
2
 
3
3
  @Library('cbci_shared_libs') _
4
4
 
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/docker/deployment/scripts/install_openstudio.sh
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 <tdb>
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
 
@@ -29,5 +29,5 @@
29
29
  ########################################################################################################################
30
30
 
31
31
  module OpenStudioMeasureTester
32
- VERSION = '0.2.2'
32
+ VERSION = '0.2.3'
33
33
  end
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.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-04-07 00:00:00.000000000 Z
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.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: