dsu 2.1.2 → 2.1.3
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/lib/dsu/subcommands/list.rb +2 -1
- data/lib/dsu/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f53c003462835311af5854bbaf8a96f1772399408231c07f9d9b805703f7c800
|
|
4
|
+
data.tar.gz: f44c52da7a5474c04f92ea9505d958e0365ae8e6fc3ccc07ee7b734c2cb79140
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ace10efb78d241419135ba9ec7d7ab76e5b31697d82cfca4dc021c81bb6935a5b152e307ad18d53e30b443fc19fd748a0241f9b61f17d739307f1f862862abf3
|
|
7
|
+
data.tar.gz: ded07767190a04dc92d2a44f5907a6aa6f5b722151dfd87b540f3aa0397d22d58004820ffd3b544ccc6c7e2764d4c8f90e7465f65131aa022fa3c28448cdf7c3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [2.1.3] 2023-12-17
|
|
2
|
+
|
|
3
|
+
Bug fixes
|
|
4
|
+
|
|
5
|
+
- Fix bug that did not recognize the `include_all` configuration option when using the `dsu list dates` command. The `include_all` configuration option is now recognized and used properly when using the `dsu list dates` command. See `dsu help list dates` for more information.
|
|
6
|
+
|
|
1
7
|
## [2.1.2] 2023-12-17
|
|
2
8
|
|
|
3
9
|
Changes
|
data/Gemfile.lock
CHANGED
data/lib/dsu/subcommands/list.rb
CHANGED
|
@@ -66,7 +66,8 @@ module Dsu
|
|
|
66
66
|
mnemonic_option_description: mnemonic_option_description)
|
|
67
67
|
option :from, type: :string, required: true, aliases: '-f', banner: 'DATE|MNEMONIC'
|
|
68
68
|
option :to, type: :string, required: true, aliases: '-t', banner: 'DATE|MNEMONIC'
|
|
69
|
-
option :include_all, default:
|
|
69
|
+
option :include_all, default: nil, type: :boolean, aliases: '-a',
|
|
70
|
+
desc: I18n.t('options.include_all')
|
|
70
71
|
def dates
|
|
71
72
|
options = configuration.to_h.merge(self.options).with_indifferent_access
|
|
72
73
|
times, errors = Support::CommandOptions::DsuTimes.dsu_times_for(from_option: options[:from], to_option: options[:to]) # rubocop:disable Layout/LineLength
|
data/lib/dsu/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dsu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gene M. Angelo, Jr.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-12-
|
|
11
|
+
date: 2023-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|