aoc_rb 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/tests.yml +13 -4
- data/CHANGELOG.md +25 -0
- data/lib/aoc_rb/cli.rb +1 -0
- data/lib/aoc_rb/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03b8a728ae0c5b35a43fc4a6c84c178820c71bc216682fd4998f4fa4aa3f713f
|
4
|
+
data.tar.gz: 5f3286c76bf28ae59b9247a8b537fa3f1f642cc0ff3752bec90ccd71d34650d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6c6be37087f9ba31bc68a1d317a3215fda3786787cd6c908cfa59a459c98bd1713a59129e583459396768780e2b4564895c7261058f23cd1026881414e89deb
|
7
|
+
data.tar.gz: fbb164d72c20009d22ada48ac5bd7731418581c7ee4db3733cb4488c6c29fdd3c7cd56927637009f9faf32385533f4fdd0f9f9ed4cd478bfc766c9a02aa34664
|
data/.github/workflows/tests.yml
CHANGED
@@ -14,20 +14,29 @@ on:
|
|
14
14
|
branches: [ main ]
|
15
15
|
|
16
16
|
jobs:
|
17
|
+
changelog:
|
18
|
+
runs-on: ubuntu-latest
|
19
|
+
steps:
|
20
|
+
- uses: actions/checkout@v2
|
21
|
+
- id: read-version
|
22
|
+
run: |
|
23
|
+
echo "::set-output name=VERSION::`cat lib/aoc_rb/version.rb | grep -i version | awk '{ print $3 }' | sed -e 's/\"//g'`"
|
24
|
+
- uses: dangoslen/changelog-enforcer@v2.3.1
|
25
|
+
with:
|
26
|
+
skipLabels: 'skip-changelog'
|
27
|
+
expectedLatestVersion: ${{ steps.read-version.outputs.VERSION }}
|
17
28
|
test:
|
18
|
-
|
19
29
|
runs-on: ubuntu-latest
|
20
30
|
strategy:
|
21
31
|
matrix:
|
22
|
-
ruby-version: ['2.6', '2.7', '3.0']
|
23
|
-
|
32
|
+
ruby-version: ['2.6', '2.7', '3.0', '3.1']
|
24
33
|
steps:
|
25
34
|
- uses: actions/checkout@v2
|
26
35
|
- name: Set up Ruby
|
27
36
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
28
37
|
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
29
38
|
# uses: ruby/setup-ruby@v1
|
30
|
-
uses: ruby/setup-ruby@
|
39
|
+
uses: ruby/setup-ruby@ebaea52cb20fea395b0904125276395e37183dac
|
31
40
|
with:
|
32
41
|
ruby-version: ${{ matrix.ruby-version }}
|
33
42
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [0.2.2]
|
8
|
+
### Fixed
|
9
|
+
- FileUtils uninitialized constant bug ([#10](https://github.com/pacso/aoc_rb/pull/10))
|
10
|
+
|
11
|
+
## [0.2.1]
|
12
|
+
|
13
|
+
## [0.2.0]
|
14
|
+
|
15
|
+
## [0.1.0]
|
16
|
+
|
17
|
+
## [0.0.0]
|
18
|
+
|
19
|
+
Initial release.
|
20
|
+
|
21
|
+
[Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.2...HEAD
|
22
|
+
[0.2.2]: https://github.com/pacso/aoc_rb/compare/v0.2.1...v0.2.2
|
23
|
+
[0.2.1]: https://github.com/pacso/aoc_rb/compare/v0.2.0...v0.2.1
|
24
|
+
[0.2.0]: https://github.com/pacso/aoc_rb/compare/v0.1.0...v0.2.0
|
25
|
+
[0.1.0]: https://github.com/pacso/aoc_rb/compare/v0.0.0...v0.1.0
|
data/lib/aoc_rb/cli.rb
CHANGED
data/lib/aoc_rb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aoc_rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Pascoe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dotenv
|
@@ -106,6 +106,7 @@ files:
|
|
106
106
|
- ".github/workflows/tests.yml"
|
107
107
|
- ".gitignore"
|
108
108
|
- ".rspec"
|
109
|
+
- CHANGELOG.md
|
109
110
|
- CODE_OF_CONDUCT.md
|
110
111
|
- Gemfile
|
111
112
|
- LICENSE
|
@@ -155,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
155
156
|
- !ruby/object:Gem::Version
|
156
157
|
version: '0'
|
157
158
|
requirements: []
|
158
|
-
rubygems_version: 3.
|
159
|
+
rubygems_version: 3.3.7
|
159
160
|
signing_key:
|
160
161
|
specification_version: 4
|
161
162
|
summary: A Ruby toolkit for Advent of Code
|