aocli 1.4.3 → 1.4.5

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: 29c5974642978c012b89b9af2dda180ff91aa9770d2008c77a8e52509f84125e
4
- data.tar.gz: 027e45d8d574d3ab33e1e942842849fcf1fd87be7b4a0c9bbc912eea195d124f
3
+ metadata.gz: 19bf4445a69f39f8f9cce7cc2bcd0d2e5ca7dc1e7757239e00a1950e25cdacac
4
+ data.tar.gz: 55dc2a38c29f5571ed7fb3f0e12f1860eb6c71ef8256eae961191f11d77fd1b9
5
5
  SHA512:
6
- metadata.gz: d9dec94e5d3166067b60fdfde9cb6324ebc230dc20d7911883a0fcb7adb1304a62f9c15b2a7c207a2a59ea7a47ad934a893a7981c79587542a3bf2f3931fd6f3
7
- data.tar.gz: 75b1ad5c83593e894f350f436a03a334a9f15c9fad4f812c9d16960cd03510aa822992dd6b0cd7470c9af89bdb20a1d3cc80609ad5ef1129559c3a05427325bb
6
+ metadata.gz: db8b0de71aa0d97be231b96292677e1e31db538fab9cbe98f6617d7ee0b230da20e7989c77c09750c3f590e27cb14376a395b89091d55bf60c4a4d920f11ac68
7
+ data.tar.gz: 5403a9f1c81573791ddb66aa12a576ab25a29b3ef48379816fe50ea6b68273a3f744de2f6f3605aa65606f3d33dee4f3bb8025306c90e5058b70342259b78508
data/CHANGELOG.md CHANGED
@@ -13,3 +13,11 @@
13
13
  ## [1.4.3] - 2022-12-11
14
14
 
15
15
  - Simplify the generated template
16
+
17
+ ## [1.4.4] - 2023-11-21
18
+
19
+ - Support year 2023
20
+
21
+ ## [1.4.5] - 2023-11-21
22
+
23
+ - Bump active support version to remove depractor error
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aocli (1.4.3)
5
- activesupport (~> 7.0)
4
+ aocli (1.4.5)
5
+ activesupport (~> 7.0.8)
6
6
  faraday (~> 2.7)
7
7
  nokogiri (~> 1.13)
8
8
  tty-prompt (~> 0.23.1)
@@ -10,7 +10,7 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activesupport (7.0.4)
13
+ activesupport (7.0.8)
14
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
15
15
  i18n (>= 1.6, < 2)
16
16
  minitest (>= 5.1)
@@ -85,6 +85,7 @@ GEM
85
85
 
86
86
  PLATFORMS
87
87
  arm64-darwin-21
88
+ arm64-darwin-22
88
89
 
89
90
  DEPENDENCIES
90
91
  aocli!
@@ -96,4 +97,4 @@ DEPENDENCIES
96
97
  vcr (~> 6.1)
97
98
 
98
99
  BUNDLED WITH
99
- 2.3.25
100
+ 2.4.7
data/lib/aocli/values.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Aocli
2
2
  module Values
3
3
  CONFIG_FILE_PATH = Dir.home + "/.aocli_config"
4
- START_DAY_YEARS = (2015..2022).to_a
4
+ START_DAY_YEARS = (2015..2023).to_a
5
5
  START_DAY_DAYS = (1..25).to_a
6
6
  end
7
7
  end
data/lib/aocli/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aocli
4
- VERSION = "1.4.3"
4
+ VERSION = "1.4.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aocli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blake Astley
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-11 00:00:00.000000000 Z
11
+ date: 2023-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '7.0'
19
+ version: 7.0.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '7.0'
26
+ version: 7.0.8
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: nokogiri
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  - !ruby/object:Gem::Version
206
206
  version: '0'
207
207
  requirements: []
208
- rubygems_version: 3.3.25
208
+ rubygems_version: 3.2.32
209
209
  signing_key:
210
210
  specification_version: 4
211
211
  summary: Command line application to retrieve advent of code challenges