honeybee-openstudio 1.8.2 → 1.8.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: 39f9a30d5777f0367f161e34b4bfc0f49702fc41af1a3aa89821924dd49b63b5
4
- data.tar.gz: eadf07f13b84a182f77580a7928841f23c54c39e2520c1d2195a0dfbe748cd34
3
+ metadata.gz: 42eb4b7d8af0ad24df9c8b48337a6e8c88ea6e13fafd14503851edca1e542b29
4
+ data.tar.gz: 15f912a5d52fc7ea445f3a75a3d014621f9f4ae23ad37f89b3a52ad7e1963aa5
5
5
  SHA512:
6
- metadata.gz: 1421a546c720291ab848cc7fbc59b175ec82cbca4f7a42a698eac7869364dcfaa092391f886250619e10d3d0aee8c0f545e8924613872558ad860c5a83a95a08
7
- data.tar.gz: 62ef9d4e855fd91cef1a4ba67ac7a55297c92ffd40932883ad79c37d1f82b43ad766fd068ac043b2c337ec69a33b38c203fca0e946827226a0d1c5a58805e085
6
+ metadata.gz: e3ba910e1d60c02223ab18051e887e62c6d51a07a5c158c117fd0de620800a625e8bd9284d29ed6d7a4795f50de42bf9ee1bc46f612282001801ef15e237427e
7
+ data.tar.gz: eb514e5bc20d345a65fa4784bddc1770019ef75546728eaa5d48a4aee5aab353a125c0f181cd3cf67f8c6db332f9e76487d3a79254841512fa247d57f9b5c764
@@ -33,9 +33,14 @@ jobs:
33
33
  - git config --global user.email "releases@ladybug.tools"
34
34
  - git config --global user.name "ladybugbot"
35
35
  - npx semantic-release
36
- - stage: docs
37
- if: branch = master AND (NOT type IN (pull_request))
36
+ - stage: deploy
37
+ if: tag IS present
38
+ script:
39
+ - export CLEAN_TAG=$(echo $TRAVIS_TAG | sed 's/v//g')
40
+ - sed -i 's/"0.0.0"/'"'$CLEAN_TAG'"'/g' honeybee-openstudio.gemspec
38
41
  deploy:
42
+ on:
43
+ tags: true
39
44
  provider: rubygems
40
45
  skip_cleanup: true
41
46
  api_key: $API_KEY
@@ -1,11 +1,10 @@
1
1
 
2
2
  lib = File.expand_path('lib', __dir__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'from_honeybee/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = 'honeybee-openstudio'
8
- spec.version = FromHoneybee::VERSION
7
+ spec.version = '1.8.3'
9
8
  spec.authors = ['Tanushree Charan', 'Dan Macumber', 'Chris Mackey', 'Mostapha Sadeghipour Roudsari']
10
9
  spec.email = ['tanushree.charan@nrel.gov', 'chris@ladybug.tools']
11
10
 
@@ -23,7 +23,7 @@ else
23
23
  end
24
24
 
25
25
  # include the honeybee-openstudio-gem
26
- gem 'honeybee-openstudio', github: 'ladybug-tools/honeybee-openstudio-gem'
26
+ gem 'honeybee-openstudio', '1.8.2'
27
27
 
28
28
  # simplecov has an unnecessary dependency on native json gem, use fork that does not require this
29
29
  gem 'simplecov', github: 'NREL/simplecov'
@@ -30,7 +30,6 @@
30
30
  # *******************************************************************************
31
31
 
32
32
  # import the core objects from which everything inherits
33
- require 'from_honeybee/version'
34
33
  require 'from_honeybee/extension'
35
34
  require 'from_honeybee/model_object'
36
35
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honeybee-openstudio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanushree Charan
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2020-05-26 00:00:00.000000000 Z
14
+ date: 2020-05-27 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -205,7 +205,6 @@ files:
205
205
  - lib/from_honeybee/simulation/designday.rb
206
206
  - lib/from_honeybee/simulation/extension.rb
207
207
  - lib/from_honeybee/simulation/parameter.rb
208
- - lib/from_honeybee/version.rb
209
208
  - lib/measures/.gitkeep
210
209
  - lib/measures/from_honeybee_model/LICENSE.md
211
210
  - lib/measures/from_honeybee_model/README.md
@@ -1,34 +0,0 @@
1
- # *******************************************************************************
2
- # Honeybee OpenStudio Gem, Copyright (c) 2020, Alliance for Sustainable
3
- # Energy, LLC, Ladybug Tools LLC and other contributors. All rights reserved.
4
- #
5
- # Redistribution and use in source and binary forms, with or without
6
- # modification, are permitted provided that the following conditions are met:
7
- #
8
- # (1) Redistributions of source code must retain the above copyright notice,
9
- # this list of conditions and the following disclaimer.
10
- #
11
- # (2) Redistributions in binary form must reproduce the above copyright notice,
12
- # this list of conditions and the following disclaimer in the documentation
13
- # and/or other materials provided with the distribution.
14
- #
15
- # (3) Neither the name of the copyright holder nor the names of any contributors
16
- # may be used to endorse or promote products derived from this software without
17
- # specific prior written permission from the respective party.
18
- #
19
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
20
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21
- # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
- # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
23
- # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
24
- # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25
- # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26
- # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
- # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
- # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
- # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
- # *******************************************************************************
31
-
32
- module FromHoneybee
33
- VERSION = '1.8.2'.freeze
34
- end