dsu 2.0.6 → 2.0.7

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: 04dc7409c51d8c3fe9a5b092790e9ad97d86413da4958d3433cee424cce0f26a
4
- data.tar.gz: 5a241e295d8c51efc12b99f165f72cff61175d95cdc51e3982d8c40f2ebadd66
3
+ metadata.gz: 4e6531db57d584a98651a619ca43e65143ef839d32a48273fb1698497351b3ba
4
+ data.tar.gz: 3478b44212fdee1536267b92ac4308259b2da97344b75e61ab643a9d6e3bb8df
5
5
  SHA512:
6
- metadata.gz: 8058a166ef355575e3b645c6c5bdafebaa943ca54b61a8a8eea8939aeb8d248a740a0a34e74371327d93581e42f2d35ea00716a744c0186536f3e22aa2698e18
7
- data.tar.gz: 525b553d32242507f324a543ad0a14837b35a726c7b00bd7952390db6624ade817cbeaab0c1fd31394b0a1b68af5f0d49bcc7fd838ca927cd47b3a96c79854c1
6
+ metadata.gz: 9c34b419d59a81e17623c92f689487817bffc85f44091277aa5f0cc3cec9d5cb58e69de5d5c86cfbee3fa3fb3f684f28b90e697c990fb2798a8c2dde520d2f6e
7
+ data.tar.gz: 665a90d021d762c5448359f4dbd3d319d66185ae65fb09b0adb627d97831e181bdad3eaf0575ff39e61a42581eb9878bbd5a2ebb92e008336768a309bed9b986
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [2.0.7] 2023-11-24
2
+
3
+ - Update ruby gems.
4
+ - Remove stale/unnecessary code.
5
+
1
6
  ## [2.0.6] 2023-10-30
2
7
 
3
8
  - Update ruby gems.
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dsu (2.0.6)
4
+ dsu (2.0.7)
5
5
  activemodel (~> 7.0, >= 7.0.4.3)
6
- activesupport (~> 7.0.8)
6
+ activesupport (>= 7.0.8, < 7.2.0)
7
7
  colorize (>= 0.8.1, < 1.2.0)
8
8
  os (~> 1.1, >= 1.1.4)
9
9
  thor (~> 1.2, >= 1.2.1)
@@ -12,22 +12,32 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- activemodel (7.0.8)
16
- activesupport (= 7.0.8)
17
- activesupport (7.0.8)
15
+ activemodel (7.1.2)
16
+ activesupport (= 7.1.2)
17
+ activesupport (7.1.2)
18
+ base64
19
+ bigdecimal
18
20
  concurrent-ruby (~> 1.0, >= 1.0.2)
21
+ connection_pool (>= 2.2.5)
22
+ drb
19
23
  i18n (>= 1.6, < 2)
20
24
  minitest (>= 5.1)
25
+ mutex_m
21
26
  tzinfo (~> 2.0)
22
27
  ast (2.4.2)
28
+ base64 (0.2.0)
29
+ bigdecimal (3.1.4)
23
30
  byebug (11.1.3)
24
31
  coderay (1.1.3)
25
32
  colorize (1.1.0)
26
33
  concurrent-ruby (1.2.2)
34
+ connection_pool (2.4.1)
27
35
  diff-lcs (1.5.0)
28
36
  docile (1.4.0)
29
37
  dotenv (2.8.1)
30
- factory_bot (6.3.0)
38
+ drb (2.2.0)
39
+ ruby2_keywords
40
+ factory_bot (6.4.2)
31
41
  activesupport (>= 5.0.0)
32
42
  ffaker (2.23.0)
33
43
  i18n (1.14.1)
@@ -37,6 +47,7 @@ GEM
37
47
  language_server-protocol (3.17.0.3)
38
48
  method_source (1.0.0)
39
49
  minitest (5.20.0)
50
+ mutex_m (0.2.0)
40
51
  os (1.1.4)
41
52
  parallel (1.23.0)
42
53
  parser (3.2.2.4)
@@ -48,7 +59,7 @@ GEM
48
59
  pry-byebug (3.10.1)
49
60
  byebug (~> 11.0)
50
61
  pry (>= 0.13, < 0.15)
51
- racc (1.7.1)
62
+ racc (1.7.3)
52
63
  rainbow (3.1.1)
53
64
  rake (13.1.0)
54
65
  reek (6.1.4)
@@ -95,6 +106,7 @@ GEM
95
106
  rubocop-capybara (~> 2.17)
96
107
  rubocop-factory_bot (~> 2.22)
97
108
  ruby-progressbar (1.13.0)
109
+ ruby2_keywords (0.0.5)
98
110
  simplecov (0.22.0)
99
111
  docile (~> 1.1)
100
112
  simplecov-html (~> 0.11)
@@ -102,7 +114,7 @@ GEM
102
114
  simplecov-html (0.12.3)
103
115
  simplecov_json_formatter (0.1.4)
104
116
  thor (1.3.0)
105
- thor_nested_subcommand (1.0.1)
117
+ thor_nested_subcommand (1.0.2)
106
118
  tzinfo (2.0.6)
107
119
  concurrent-ruby (~> 1.0)
108
120
  unicode-display_width (2.5.0)
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.0.6'
5
+ VERSION = '2.0.7'
6
6
  end
data/lib/dsu.rb CHANGED
@@ -1,8 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'active_support/core_ext/date/calculations'
4
3
  require 'active_support/core_ext/hash/indifferent_access'
5
- require 'active_support/core_ext/numeric/time'
6
4
  require 'active_support/core_ext/object/blank'
7
5
  require 'thor'
8
6
  require 'time'
@@ -12,7 +10,6 @@ Dir.glob("#{__dir__}/core/**/*.rb").each do |file|
12
10
  end
13
11
 
14
12
  Array.include(WrapAndJoin)
15
- DateAndTime::Calculations.include(NotToday)
16
13
  Hash.include(ColorThemeColors)
17
14
  Hash.include(ColorThemeMode)
18
15
 
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dsu
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
4
+ version: 2.0.7
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-10-30 00:00:00.000000000 Z
11
+ date: 2023-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 7.0.8
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 7.2.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: 7.0.8
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 7.2.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: activemodel
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -163,7 +169,6 @@ files:
163
169
  - exe/dsu_migrate.rb
164
170
  - lib/core/ruby/color_theme_colors.rb
165
171
  - lib/core/ruby/color_theme_mode.rb
166
- - lib/core/ruby/not_today.rb
167
172
  - lib/core/ruby/wrap_and_join.rb
168
173
  - lib/dsu.rb
169
174
  - lib/dsu/base_cli.rb
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module NotToday
4
- def not_today?
5
- !today?
6
- end
7
- end