aoc_rb 0.2.8 → 0.2.9

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: 345d1c7554bb6930b1e8a174ecf2699a45d3608831e9e62c11a2c030b3a4b91c
4
+ data.tar.gz: 4d6baad5f40942b06e8e80c30e1dc1db12366c750e4345214fa8d78209abd14a
5
5
  SHA512:
6
- metadata.gz: f87a5c30458a5047fab0a0a5e3af080f5dc4650185e284fc041cce4d1e31adbff85eb6caeb6b122b46b74f781a00b8e469f6640bffe97055c84d3d92132f391e
7
- data.tar.gz: 74c8f875120ca7c142ada3c0c0366f674217f551609b3b1d9b4a35fc811bcd857352b8667eb25f770606c58803edd910641e98f1a3857a5433c64771c230fd79
6
+ metadata.gz: 57720a17dd3dcac43a7a97af1966df7b8db885129e25fdb0e3f3e4969582d885c6bffbbaa8f26a03336320f9e093893c538c700b811b055b76fa064bc09447c9
7
+ data.tar.gz: 7fd8702c9e6ae60de0978b1346ac2928dacd8435012097e18f918789222284912290db98b9fcd74f106f12a4699d7f0998835a824897ed30262e8278af8ea1b3
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ 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.9]
11
+ ### Changed
12
+ - Added missing require to `lib/aoc_rb/app.rb` ([#33](https://github.com/pacso/aoc_rb/pull/33) by [@pacso](https://github.com/pacso))
13
+
10
14
  ## [0.2.8]
11
15
  ### Changed
12
16
  - 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 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
70
74
 
71
75
  Initial release.
72
76
 
73
- [Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.8...HEAD
77
+ [Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.9...HEAD
78
+ [0.2.9]: https://github.com/pacso/aoc_rb/compare/v0.2.8...v0.2.9
74
79
  [0.2.8]: https://github.com/pacso/aoc_rb/compare/v0.2.7...v0.2.8
75
80
  [0.2.7]: https://github.com/pacso/aoc_rb/compare/v0.2.6...v0.2.7
76
81
  [0.2.6]: https://github.com/pacso/aoc_rb/compare/v0.2.5...v0.2.6
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.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Pascoe