ykxutils 0.1.12 → 0.1.14

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: c0659659032f5707b2cdeade5612ba9450d0b031766aa3ae592c0ac33e598543
4
- data.tar.gz: a101d3eb24966539154012d769913cb0be13fac416eb1de173a77034bf6576e5
3
+ metadata.gz: dbe824d0e20b9b05858f8bf9b50d350c5d3bf1752a0788645930356c0bf0c5f3
4
+ data.tar.gz: 54ca216a25e25cfbce58d83952a96a02f9a9b0166146ec369f36c0d9d5ab98d1
5
5
  SHA512:
6
- metadata.gz: 623fb0b29f44a21eaaf84ead317c17b104d701cd81f28345f9788d513a3690f79c644e5e12f8450b90c27d0f6dc9dbabff19db4124abbde81a61eabeb5536281
7
- data.tar.gz: b4a226775f324625a513cc9c802ee2779ef9593b66da85abc798e998c56bc91cc9a4ee3b25f5e64030733da1da6de53ffe74858239d86f2b23ab9822addc6b07
6
+ metadata.gz: e99bec2aa2b9297da61f2e4f379e154c1ce989a83620ca099d0dadc6cc64e7ce6fbf5977e05ed8d855fe143b5209e54d6437e6f5c0842f65f809aaaf0f7e2df0
7
+ data.tar.gz: 86f46a1786acbe463eb023af68f2ffdf49db7a799cc159486fc2fb0d087b924fafa2c1a7d958de7df6b697d46027d7e5313533013ee2e9b53245d2e474a98233
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2024-02-06 17:44:56 UTC using RuboCop version 1.59.0.
3
+ # on 2024-07-03 23:05:09 UTC using RuboCop version 1.59.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -8,19 +8,10 @@
8
8
 
9
9
  # Offense count: 1
10
10
  # This cop supports safe autocorrection (--autocorrect).
11
- # Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
12
- # Include: **/*.gemfile, **/Gemfile, **/gems.rb
13
- Bundler/OrderedGems:
11
+ # Configuration parameters: Width, AllowedPatterns.
12
+ Layout/IndentationWidth:
14
13
  Exclude:
15
- # - 'Gemfile'
16
-
17
- # Offense count: 1
18
- # This cop supports safe autocorrection (--autocorrect).
19
- # Configuration parameters: EnforcedStyle.
20
- # SupportedStyles: final_newline, final_blank_line
21
- Layout/TrailingEmptyLines:
22
- Exclude:
23
- # - 'Gemfile'
14
+ - 'spec/ykxutils_spec.rb'
24
15
 
25
16
  # Offense count: 1
26
17
  # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
@@ -43,7 +34,6 @@ RSpec/ExampleLength:
43
34
  Max: 8
44
35
 
45
36
  # Offense count: 1
46
- # Configuration parameters: AssignmentOnly.
47
- RSpec/InstanceVariable:
48
- Exclude:
49
- # - 'spec/ykxutils_spec.rb'
37
+ # Configuration parameters: AllowSubject.
38
+ RSpec/MultipleMemoizedHelpers:
39
+ Max: 6
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ gemspec
7
7
 
8
8
  gem "bundler"
9
9
  gem "erubi"
10
- gem "rake", "~> 13.1"
10
+ gem "rake", "~> 13.2"
11
11
  gem "tilt"
12
12
 
13
13
  group :development do
@@ -16,7 +16,7 @@ group :development do
16
16
  end
17
17
 
18
18
  group :test do
19
- gem "rspec", "~> 3.12"
19
+ gem "rspec", "~> 3.13"
20
20
  gem "rubocop"
21
21
  gem "rubocop-performance"
22
22
  gem "rubocop-rake", require: false
data/Gemfile.lock CHANGED
@@ -1,82 +1,80 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ykxutils (0.1.12)
4
+ ykxutils (0.1.14)
5
+ erubi
6
+ tilt
5
7
 
6
8
  GEM
7
9
  remote: https://rubygems.org/
8
10
  specs:
9
11
  ast (2.4.2)
10
- debug (1.9.1)
12
+ debug (1.9.2)
11
13
  irb (~> 1.10)
12
14
  reline (>= 0.3.8)
13
- diff-lcs (1.5.0)
14
- erubi (1.12.0)
15
+ diff-lcs (1.5.1)
16
+ erubi (1.13.0)
15
17
  io-console (0.7.2)
16
- irb (1.11.1)
18
+ irb (1.12.0)
17
19
  rdoc
18
20
  reline (>= 0.4.2)
19
- json (2.7.1)
21
+ json (2.7.2)
20
22
  language_server-protocol (3.17.0.3)
21
- parallel (1.24.0)
22
- parser (3.2.2.4)
23
+ parallel (1.25.1)
24
+ parser (3.3.3.0)
23
25
  ast (~> 2.4.1)
24
26
  racc
25
27
  psych (5.1.2)
26
28
  stringio
27
- racc (1.7.3)
29
+ racc (1.8.0)
28
30
  rainbow (3.1.1)
29
- rake (13.1.0)
30
- rdoc (6.6.2)
31
+ rake (13.2.1)
32
+ rdoc (6.7.0)
31
33
  psych (>= 4.0.0)
32
- regexp_parser (2.8.3)
33
- reline (0.4.2)
34
+ regexp_parser (2.9.2)
35
+ reline (0.5.0)
34
36
  io-console (~> 0.5)
35
- rexml (3.2.6)
36
- rspec (3.12.0)
37
- rspec-core (~> 3.12.0)
38
- rspec-expectations (~> 3.12.0)
39
- rspec-mocks (~> 3.12.0)
40
- rspec-core (3.12.2)
41
- rspec-support (~> 3.12.0)
42
- rspec-expectations (3.12.3)
37
+ rexml (3.3.1)
38
+ strscan
39
+ rspec (3.13.0)
40
+ rspec-core (~> 3.13.0)
41
+ rspec-expectations (~> 3.13.0)
42
+ rspec-mocks (~> 3.13.0)
43
+ rspec-core (3.13.0)
44
+ rspec-support (~> 3.13.0)
45
+ rspec-expectations (3.13.0)
43
46
  diff-lcs (>= 1.2.0, < 2.0)
44
- rspec-support (~> 3.12.0)
45
- rspec-mocks (3.12.6)
47
+ rspec-support (~> 3.13.0)
48
+ rspec-mocks (3.13.0)
46
49
  diff-lcs (>= 1.2.0, < 2.0)
47
- rspec-support (~> 3.12.0)
48
- rspec-support (3.12.1)
49
- rubocop (1.59.0)
50
+ rspec-support (~> 3.13.0)
51
+ rspec-support (3.13.0)
52
+ rubocop (1.64.1)
50
53
  json (~> 2.3)
51
54
  language_server-protocol (>= 3.17.0)
52
55
  parallel (~> 1.10)
53
- parser (>= 3.2.2.4)
56
+ parser (>= 3.3.0.2)
54
57
  rainbow (>= 2.2.2, < 4.0)
55
58
  regexp_parser (>= 1.8, < 3.0)
56
59
  rexml (>= 3.2.5, < 4.0)
57
- rubocop-ast (>= 1.30.0, < 2.0)
60
+ rubocop-ast (>= 1.31.1, < 2.0)
58
61
  ruby-progressbar (~> 1.7)
59
62
  unicode-display_width (>= 2.4.0, < 3.0)
60
- rubocop-ast (1.30.0)
61
- parser (>= 3.2.1.0)
62
- rubocop-capybara (2.20.0)
63
- rubocop (~> 1.41)
64
- rubocop-factory_bot (2.25.1)
65
- rubocop (~> 1.41)
66
- rubocop-performance (1.20.1)
63
+ rubocop-ast (1.31.3)
64
+ parser (>= 3.3.1.0)
65
+ rubocop-performance (1.21.1)
67
66
  rubocop (>= 1.48.1, < 2.0)
68
- rubocop-ast (>= 1.30.0, < 2.0)
67
+ rubocop-ast (>= 1.31.1, < 2.0)
69
68
  rubocop-rake (0.6.0)
70
69
  rubocop (~> 1.0)
71
- rubocop-rspec (2.25.0)
72
- rubocop (~> 1.40)
73
- rubocop-capybara (~> 2.17)
74
- rubocop-factory_bot (~> 2.22)
70
+ rubocop-rspec (3.0.2)
71
+ rubocop (~> 1.61)
75
72
  ruby-progressbar (1.13.0)
76
73
  stringio (3.1.0)
77
- tilt (2.3.0)
74
+ strscan (3.1.0)
75
+ tilt (2.4.0)
78
76
  unicode-display_width (2.5.0)
79
- yard (0.9.34)
77
+ yard (0.9.36)
80
78
 
81
79
  PLATFORMS
82
80
  x86_64-linux
@@ -85,8 +83,8 @@ DEPENDENCIES
85
83
  bundler
86
84
  debug
87
85
  erubi
88
- rake (~> 13.1)
89
- rspec (~> 3.12)
86
+ rake (~> 13.2)
87
+ rspec (~> 3.13)
90
88
  rubocop
91
89
  rubocop-performance
92
90
  rubocop-rake
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ykxutils
4
- VERSION = "0.1.12"
4
+ VERSION = "0.1.14"
5
5
  end
data/ykxutils.gemspec CHANGED
@@ -33,9 +33,9 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  # spec.add_runtime_dependency "bundler"
35
35
  # spec.add_runtime_dependency 'debug'
36
- # spec.add_runtime_dependency "erubi"
36
+ spec.add_runtime_dependency "erubi"
37
37
  # spec.add_runtime_dependency "rake", "~> 13.0"
38
- # spec.add_runtime_dependency "tilt"
38
+ spec.add_runtime_dependency "tilt"
39
39
 
40
40
  # spec.add_development_dependency "rspec", "~> 3.0"
41
41
  # spec.add_development_dependency "rubocop"
metadata CHANGED
@@ -1,15 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ykxutils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.12
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - ykominami
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-09 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2024-07-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: erubi
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: tilt
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
13
41
  description: New version of utilty function created by yk.
14
42
  email:
15
43
  - ykominami@gmail.com
@@ -80,7 +108,7 @@ metadata:
80
108
  homepage_uri: https://ykominami.github.io/ykxutils
81
109
  source_code_uri: https://github.com/ykominami/ykxutils
82
110
  rubygems_mfa_required: 'true'
83
- post_install_message:
111
+ post_install_message:
84
112
  rdoc_options: []
85
113
  require_paths:
86
114
  - lib
@@ -95,8 +123,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
123
  - !ruby/object:Gem::Version
96
124
  version: '0'
97
125
  requirements: []
98
- rubygems_version: 3.3.26
99
- signing_key:
126
+ rubygems_version: 3.5.14
127
+ signing_key:
100
128
  specification_version: 4
101
129
  summary: New version of utilty function created by yk.
102
130
  test_files: []