dsu 2.1.2 → 2.1.3

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: f56239cec153192ff0f815e124e8001ab7676c418f334ff328512c6cfc11eeb4
4
- data.tar.gz: d0072d4760663b70d32fa5695c6dbae27db960b95017a0a49598ef53a0bba588
3
+ metadata.gz: f53c003462835311af5854bbaf8a96f1772399408231c07f9d9b805703f7c800
4
+ data.tar.gz: f44c52da7a5474c04f92ea9505d958e0365ae8e6fc3ccc07ee7b734c2cb79140
5
5
  SHA512:
6
- metadata.gz: 8e60d02338b12cd52c7f2a0b4f8f5f633879c6c3e7614b8fd1563d03348e778e9cb6f83a674e0be9bf53b5cac878e058d045834ce7c0f615e12129830fc2ca5b
7
- data.tar.gz: d6807da2999520c94dbe54b5439b52a386701a20e0696e700028dac4de106ab14661ef8b5f133f7265da3994cf438bd089d2d9504314932d423464a2dfaae331
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dsu (2.1.2)
4
+ dsu (2.1.3)
5
5
  activemodel (>= 7.0.8, < 8.0)
6
6
  activesupport (>= 7.0.8, < 8.0)
7
7
  colorize (>= 0.8.1, < 1.0)
@@ -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: false, type: :boolean, aliases: '-a', desc: I18n.t('options.include_all')
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
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Dsu
4
4
  VERSION_REGEX = /\A\d+\.\d+\.\d+(\.alpha\.\d+)?\z/
5
- VERSION = '2.1.2'
5
+ VERSION = '2.1.3'
6
6
  end
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.2
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-17 00:00:00.000000000 Z
11
+ date: 2023-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport