voom-presenters 2.0.0 → 2.0.1
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/semantic-release.yml +4 -1
- data/.releaserc +9 -2
- data/CHANGELOG.md +7 -0
- data/{bin → exe}/presenters +0 -0
- data/lib/voom/presenters/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 943bb8eb27566a410289286a735430b87e793902dd8989b158aeddc916035b83
|
|
4
|
+
data.tar.gz: 22104e1585ba285e312ac747183386305c67bf29d34cdda818b81d95737a134a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6eba5aa19f173e7ebf4942e56f76fbd8f295ba8d4d8b7eb218fb984b63366daedeca444da02e7dc3e3c6ff6f75c62ec11378a69a96e9399fce85fe955e6afb9
|
|
7
|
+
data.tar.gz: 6b8a92707b825217b367da0d76d8ca7f53be39a8221d793c1a9b7ae4ba4272e2c8e1292e37139713e09bd143d53bd9f220d7a62bac3c98447bb82efdda6d03d4
|
|
@@ -31,7 +31,10 @@ jobs:
|
|
|
31
31
|
- name: Semantic Release
|
|
32
32
|
uses: cycjimmy/semantic-release-action@v2
|
|
33
33
|
with:
|
|
34
|
-
extra_plugins:
|
|
34
|
+
extra_plugins: |
|
|
35
|
+
@semantic-release/changelog
|
|
36
|
+
@semantic-release/github
|
|
37
|
+
semantic-release-rubygem
|
|
35
38
|
dry_run: false
|
|
36
39
|
env:
|
|
37
40
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.releaserc
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
"plugins": [
|
|
4
4
|
"@semantic-release/commit-analyzer",
|
|
5
5
|
"@semantic-release/release-notes-generator",
|
|
6
|
-
|
|
6
|
+
[
|
|
7
|
+
"@semantic-release/changelog",
|
|
8
|
+
{
|
|
9
|
+
"changelogFile": "CHANGELOG.md"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"@semantic-release/github",
|
|
13
|
+
"semantic-release-rubygem"
|
|
7
14
|
]
|
|
8
|
-
}
|
|
15
|
+
}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.0.1](https://github.com/rx/presenters/compare/v2.0.0...v2.0.1) (2020-12-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* moved presenters cli to exe directory ([bdea977](https://github.com/rx/presenters/commit/bdea977d8560ee02823869b65e63a86f7fde457d))
|
|
7
|
+
|
|
1
8
|
# Changelog
|
|
2
9
|
|
|
3
10
|
## [1.0.0](https://github.com/rx/presenters/tree/1.0.0) (2020-12-20)
|
data/{bin → exe}/presenters
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: voom-presenters
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Russell Edens
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-12-
|
|
11
|
+
date: 2020-12-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ice_nine
|
|
@@ -299,7 +299,8 @@ email:
|
|
|
299
299
|
- 'russell@voomify.com
|
|
300
300
|
|
|
301
301
|
'
|
|
302
|
-
executables:
|
|
302
|
+
executables:
|
|
303
|
+
- presenters
|
|
303
304
|
extensions: []
|
|
304
305
|
extra_rdoc_files: []
|
|
305
306
|
files:
|
|
@@ -413,11 +414,11 @@ files:
|
|
|
413
414
|
- app/demo/shared/debug.pom
|
|
414
415
|
- app/demo/styles.pom
|
|
415
416
|
- bin/console
|
|
416
|
-
- bin/presenters
|
|
417
417
|
- bin/setup
|
|
418
418
|
- component-status.yml
|
|
419
419
|
- config.ru
|
|
420
420
|
- docs/settings.md
|
|
421
|
+
- exe/presenters
|
|
421
422
|
- lib/hash_ext/traverse.rb
|
|
422
423
|
- lib/voom.rb
|
|
423
424
|
- lib/voom/container_methods.rb
|