aoc_rb 0.2.8 → 0.2.10

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: 9296a14fa9788d9564dc6f23117b1a2f4d88bf2166bafe0abdfabdd76a2f3036
4
- data.tar.gz: dfcb1459041a1aa38a1a21bb94b6daf6f6d19413d2316caa7650286aaacede54
3
+ metadata.gz: 2fa63d068a20e91f2743cb9e99b3c3913210b8fface4a16f2d3683ede6051b98
4
+ data.tar.gz: 72a9dd040852b6a9b656eb6fd5a7169573692ad9ea495a8faf5abbcb84c24966
5
5
  SHA512:
6
- metadata.gz: f87a5c30458a5047fab0a0a5e3af080f5dc4650185e284fc041cce4d1e31adbff85eb6caeb6b122b46b74f781a00b8e469f6640bffe97055c84d3d92132f391e
7
- data.tar.gz: 74c8f875120ca7c142ada3c0c0366f674217f551609b3b1d9b4a35fc811bcd857352b8667eb25f770606c58803edd910641e98f1a3857a5433c64771c230fd79
6
+ metadata.gz: 4aa44a872dc3e21a2c259af34dfd9d5157411c414889d45488f7c8e670b8c5f8053198572626f583b8b6dbb4ef0e9e762bd0243d9086c840a8f65e5fa8d60484
7
+ data.tar.gz: 396e9670a974ebeef75851adb3090a324623f48110f01320a6606548fe47bbb4cde748f2ca09d9761be450e5b8cfb2a8e8c1a0dabf750f86a353f418cf668e36
data/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
  ## [Unreleased]
8
8
  - No unreleased changes!
9
9
 
10
+ ## [0.2.10]
11
+ ### Changed
12
+ - Update API handler to accept zero padded day numbers ([#34](https://github.com/pacso/aoc_rb/pull/34) by [@YozuChris](https://github.com/YozuChris))
13
+
14
+ ## [0.2.9]
15
+ ### Changed
16
+ - Added missing require to `lib/aoc_rb/app.rb` ([#33](https://github.com/pacso/aoc_rb/pull/33) by [@pacso](https://github.com/pacso))
17
+
10
18
  ## [0.2.8]
11
19
  ### Changed
12
20
  - Updated the aoc command to self-heal the `bin/aoc` stub with the expected `AocRb::App.start` command ([#32](https://github.com/pacso/aoc_rb/pull/32) by [@pacso](https://github.com/pacso))
@@ -70,7 +78,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
70
78
 
71
79
  Initial release.
72
80
 
73
- [Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.8...HEAD
81
+ [Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.10...HEAD
82
+ [0.2.10]: https://github.com/pacso/aoc_rb/compare/v0.2.9...v0.2.10
83
+ [0.2.9]: https://github.com/pacso/aoc_rb/compare/v0.2.8...v0.2.9
74
84
  [0.2.8]: https://github.com/pacso/aoc_rb/compare/v0.2.7...v0.2.8
75
85
  [0.2.7]: https://github.com/pacso/aoc_rb/compare/v0.2.6...v0.2.7
76
86
  [0.2.6]: https://github.com/pacso/aoc_rb/compare/v0.2.5...v0.2.6
@@ -24,7 +24,7 @@ module AocRb
24
24
 
25
25
  private
26
26
  def puzzle_path(year, day)
27
- "/#{year}/day/#{day}"
27
+ "/#{year}/day/#{day.to_i}"
28
28
  end
29
29
 
30
30
  def input_path(year, day)
data/lib/aoc_rb/app.rb CHANGED
@@ -8,6 +8,7 @@ require 'aoc_rb/puzzle'
8
8
  require 'aoc_rb/puzzle_input'
9
9
  require 'aoc_rb/puzzle_solution'
10
10
  require 'aoc_rb/puzzle_source'
11
+ require 'aoc_rb/version'
11
12
 
12
13
  shared_files = File.join(Dir.getwd, "challenges", "shared", "**", "*.rb")
13
14
  Dir[shared_files].each do |file|
@@ -1,3 +1,3 @@
1
1
  module AocRb
2
- VERSION = "0.2.8"
2
+ VERSION = "0.2.10"
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.8
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Pascoe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2024-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv