aoc_rb 0.2.1 → 0.2.2

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: 9c58f8fae503e8530a04cfb7e3adffab28dda605946ddcd8ca5d3a1eda2efa88
4
- data.tar.gz: f6801d662d3ca723f0d88ccf5eda4172f5c172219fbc2eebb99a21442035718c
3
+ metadata.gz: 03b8a728ae0c5b35a43fc4a6c84c178820c71bc216682fd4998f4fa4aa3f713f
4
+ data.tar.gz: 5f3286c76bf28ae59b9247a8b537fa3f1f642cc0ff3752bec90ccd71d34650d3
5
5
  SHA512:
6
- metadata.gz: 6a9646f1149312b0fa36e6de7c473cb34d83458fff21caf85987475848dfd9d3e75c9d8fade76305280b012780d2f91842c0da64b28008c57e164b7677aed4c6
7
- data.tar.gz: f0e89fb9eaaee8d28110c94d67ce821309b57835ba3286670426290030ffb1c7ca218212f554c006a64a646971c5a2fdf5476cd48e84239392bf3dc491bac049
6
+ metadata.gz: b6c6be37087f9ba31bc68a1d317a3215fda3786787cd6c908cfa59a459c98bd1713a59129e583459396768780e2b4564895c7261058f23cd1026881414e89deb
7
+ data.tar.gz: fbb164d72c20009d22ada48ac5bd7731418581c7ee4db3733cb4488c6c29fdd3c7cd56927637009f9faf32385533f4fdd0f9f9ed4cd478bfc766c9a02aa34664
@@ -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@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
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
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "fileutils"
3
4
  require "aoc_rb/app_loader"
4
5
  AocRb::AppLoader.exec_app
5
6
 
@@ -1,3 +1,3 @@
1
1
  module AocRb
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
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.1
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: 2021-12-05 00:00:00.000000000 Z
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.2.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