honeybee-openstudio 2.20.3 → 2.20.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d40218a1bff789b24eefd2531606d7728986dee266162ea9c45962ebd24fb9d
4
- data.tar.gz: 6a574ebd0c43c4ce86a81a905b9b34d43215986ff33551b1aa1d2049a5730fd1
3
+ metadata.gz: b9fbfbb208d19a2e366fa1ada37539d092629be13a6db2be602a1f4fb9a4c52a
4
+ data.tar.gz: a077d954be6e495e79f57ec8be27f0ad6136fc4ec0161b771839b5bc9f3a0ef1
5
5
  SHA512:
6
- metadata.gz: 81d1f39d2d9f4266b8c66c9a10c7a6213899aa234b30417205bfb79d92488a703065cf94e63dcb3975e86b3320149d7b22f1c200247d28c43a0287365ec361b0
7
- data.tar.gz: 9cd9273a6ad6e63b9f5f5e4657d9754228234ba960bce78fdc5a241f58df6b06b316bc6c7732562f4c645509e1944ca71918b2ffe0ee05b8a10a7097523fd638
6
+ metadata.gz: 3782aa264ee6fb9e17f5f3d939db0e877d5e7a4de77a16af7490bb4c95f724efd0f0e1c2534ad9ce95f2d6290ea97931a92b5c6288b8809f342beb3b67205d8c
7
+ data.tar.gz: d7df121c3018a50c71fe2dd667eab9fa706e214bb1b53c0cccc4bda115daccfd2c6f807aaafa48ae8576cc784d2298b19f8370ec59624b14977ee61d1dd38652
@@ -54,3 +54,19 @@ jobs:
54
54
  uses: dawidd6/action-publish-gem@v1
55
55
  with:
56
56
  api_key: ${{secrets.RUBYGEMS_API_KEY}}
57
+ - name: Update lbt-grasshopper
58
+ if: steps.semantic.outputs.new_release_published == 'true'
59
+ env:
60
+ RELEASE_TAG: ${{ steps.semantic.outputs.new_release_version }}
61
+ DISPATCH_REPO: ladybug-tools/lbt-grasshopper
62
+ DEPS_TOKEN: ${{ secrets.DEPS_UPDATING }}
63
+ run: |
64
+ curl -X POST https://api.github.com/repos/$DISPATCH_REPO/dispatches \
65
+ -H "Accept: application/vnd.github.everest-preview+json" \
66
+ -d '{
67
+ "event_type": "honeybee_openstudio_gem_release",
68
+ "client_payload": {
69
+ "version" : "'$RELEASE_TAG'"
70
+ }
71
+ }' \
72
+ -u chriswmackey:$DEPS_TOKEN
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  [![Build Status](https://github.com/ladybug-tools/honeybee-openstudio-gem/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-openstudio-gem/actions)
2
- [![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee-openstudio-gem/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/honeybee-openstudio-gem)
3
2
 
4
- ![Ruby 2.5](https://img.shields.io/badge/ruby-2.5-blue.svg)
3
+ ![Ruby 2.7](https://img.shields.io/badge/ruby-2.7-blue.svg)
5
4
 
6
5
  # honeybee-openstudio-gem
7
6
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'honeybee-openstudio'
7
- spec.version = '2.20.3'
7
+ spec.version = '2.20.7'
8
8
  spec.authors = ['Tanushree Charan', 'Dan Macumber', 'Chris Mackey', 'Mostapha Sadeghipour Roudsari']
9
9
  spec.email = ['tanushree.charan@nrel.gov', 'chris@ladybug.tools']
10
10
 
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: 2.20.3
4
+ version: 2.20.7
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: 2021-07-19 00:00:00.000000000 Z
14
+ date: 2021-07-20 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -148,7 +148,6 @@ executables: []
148
148
  extensions: []
149
149
  extra_rdoc_files: []
150
150
  files:
151
- - ".github/workflows/cd.yml"
152
151
  - ".github/workflows/ci.yaml"
153
152
  - ".gitignore"
154
153
  - ".releaserc.json"
@@ -1,32 +0,0 @@
1
- name: CD
2
-
3
- on:
4
- release:
5
- types: [published]
6
-
7
- jobs:
8
- dispatch_schema:
9
- name: Dispatch Schema to Clients
10
- runs-on: ubuntu-latest
11
-
12
- strategy:
13
- matrix:
14
- client_repo:
15
- - ladybug-tools/lbt-grasshopper
16
-
17
- steps:
18
- - name: Send repo dispatch to lbt-grasshopper
19
- env:
20
- RELEASE_TAG: ${{ github.event.release.tag_name }}
21
- DISPATCH_URL: https://api.github.com/repos/${{ matrix.client_repo }}/dispatches
22
- GH_TOKEN: ${{ secrets.GH_TOKEN }}
23
- run: |
24
- curl -X POST $DISPATCH_URL \
25
- -H "Accept: application/vnd.github.everest-preview+json" \
26
- -d '{
27
- "event_type": "honeybee_openstudio_gem_release",
28
- "client_payload": {
29
- "version" : "'$RELEASE_TAG'"
30
- }
31
- }' \
32
- -u ladybugbot:$GH_TOKEN