code_keeper 0.6.0 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +2 -3
- data/CHANGELOG.md +7 -3
- data/Gemfile +2 -0
- data/Gemfile.lock +38 -30
- data/code_keeper.gemspec +1 -1
- data/exe/code_keeper +0 -0
- data/lib/code_keeper/finder.rb +1 -1
- data/lib/code_keeper/version.rb +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ea1b134f1fcb9a7518b88046d72cec8410ce7147e88d0e9698e3a651c06224d
|
4
|
+
data.tar.gz: ec34843ea955482ac285b02833c6d006bce1190c5d9e33ad0cf3a07027d41670
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19aaa173fb6cde0b1515a28f4223d41d9d54189325016c7a693937e617af54da2a36a9fb41eb993874cd56efbaf4c029ef3d334b06d4e380144e3c3dd04a29ce
|
7
|
+
data.tar.gz: 54f70735e4a5941068d490c8d5192869a7b0a505546fd0c303cf08f9cb0076e67f48a6c6481821c57a3590c4f64649b2b13870f151822fb1b3e4d6a2c161ff68
|
data/.github/workflows/main.yml
CHANGED
@@ -7,16 +7,15 @@ jobs:
|
|
7
7
|
runs-on: ubuntu-latest
|
8
8
|
strategy:
|
9
9
|
matrix:
|
10
|
-
ruby: [
|
10
|
+
ruby: [3.1, 3.2, 3.3, 3.4]
|
11
11
|
name: Ruby ${{ matrix.ruby }}
|
12
12
|
steps:
|
13
|
-
- uses: actions/checkout@
|
13
|
+
- uses: actions/checkout@v4
|
14
14
|
- name: Set up Ruby
|
15
15
|
uses: ruby/setup-ruby@v1
|
16
16
|
with:
|
17
17
|
ruby-version: ${{ matrix.ruby }}
|
18
18
|
- name: Run the default task
|
19
19
|
run: |
|
20
|
-
gem install bundler -v 2.2.3
|
21
20
|
bundle install
|
22
21
|
bundle exec rake
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
# Change log
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
## 0.6.2 (2025-01-11)
|
3
|
+
### Changes
|
4
|
+
- [Support Ruby 3.4.](https://github.com/ebihara99999/code_keeper/pull/38)
|
5
|
+
## 0.6.1 (2024-12-15)
|
6
|
+
### Changes
|
7
|
+
- [Stop supporting Ruby 2.7 and 3.0 because of EOL.](https://github.com/ebihara99999/code_keeper/pull/37)
|
8
|
+
- [Relax parallel gem version](https://github.com/ebihara99999/code_keeper/pull/36)
|
5
9
|
## 0.6.0 (2022-03-27)
|
6
10
|
### New features
|
7
11
|
- [35](https://github.com/ebihara99999/code_keeper/pull/35): Support Ruby 3.1.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
code_keeper (0.
|
5
|
-
parallel (
|
4
|
+
code_keeper (0.6.1)
|
5
|
+
parallel (>= 1.20.1, < 2)
|
6
6
|
rubocop (>= 1.13.0)
|
7
7
|
rubocop-ast (>= 1.4.1)
|
8
8
|
|
@@ -10,48 +10,56 @@ GEM
|
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
12
|
ast (2.4.2)
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
csv (3.3.2)
|
14
|
+
diff-lcs (1.5.1)
|
15
|
+
json (2.9.0)
|
16
|
+
language_server-protocol (3.17.0.3)
|
17
|
+
parallel (1.26.3)
|
18
|
+
parser (3.3.6.0)
|
16
19
|
ast (~> 2.4.1)
|
20
|
+
racc
|
21
|
+
racc (1.8.1)
|
17
22
|
rainbow (3.1.1)
|
18
|
-
rake (13.
|
19
|
-
regexp_parser (2.
|
20
|
-
|
21
|
-
|
22
|
-
rspec-
|
23
|
-
rspec-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
rspec-expectations (3.11.0)
|
23
|
+
rake (13.2.1)
|
24
|
+
regexp_parser (2.9.3)
|
25
|
+
rspec (3.13.0)
|
26
|
+
rspec-core (~> 3.13.0)
|
27
|
+
rspec-expectations (~> 3.13.0)
|
28
|
+
rspec-mocks (~> 3.13.0)
|
29
|
+
rspec-core (3.13.2)
|
30
|
+
rspec-support (~> 3.13.0)
|
31
|
+
rspec-expectations (3.13.3)
|
28
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
|
-
rspec-support (~> 3.
|
30
|
-
rspec-mocks (3.
|
33
|
+
rspec-support (~> 3.13.0)
|
34
|
+
rspec-mocks (3.13.2)
|
31
35
|
diff-lcs (>= 1.2.0, < 2.0)
|
32
|
-
rspec-support (~> 3.
|
33
|
-
rspec-support (3.
|
34
|
-
rubocop (1.
|
36
|
+
rspec-support (~> 3.13.0)
|
37
|
+
rspec-support (3.13.2)
|
38
|
+
rubocop (1.69.2)
|
39
|
+
json (~> 2.3)
|
40
|
+
language_server-protocol (>= 3.17.0)
|
35
41
|
parallel (~> 1.10)
|
36
|
-
parser (>= 3.
|
42
|
+
parser (>= 3.3.0.2)
|
37
43
|
rainbow (>= 2.2.2, < 4.0)
|
38
|
-
regexp_parser (>=
|
39
|
-
|
40
|
-
rubocop-ast (>= 1.16.0, < 2.0)
|
44
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
45
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
41
46
|
ruby-progressbar (~> 1.7)
|
42
|
-
unicode-display_width (>=
|
43
|
-
rubocop-ast (1.
|
44
|
-
parser (>= 3.
|
45
|
-
ruby-progressbar (1.
|
46
|
-
unicode-display_width (
|
47
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
48
|
+
rubocop-ast (1.36.2)
|
49
|
+
parser (>= 3.3.1.0)
|
50
|
+
ruby-progressbar (1.13.0)
|
51
|
+
unicode-display_width (3.1.2)
|
52
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
53
|
+
unicode-emoji (4.0.4)
|
47
54
|
|
48
55
|
PLATFORMS
|
49
56
|
x86_64-linux
|
50
57
|
|
51
58
|
DEPENDENCIES
|
52
59
|
code_keeper!
|
60
|
+
csv
|
53
61
|
rake (~> 13.0)
|
54
62
|
rspec (~> 3.0)
|
55
63
|
|
56
64
|
BUNDLED WITH
|
57
|
-
2.
|
65
|
+
2.5.23
|
data/code_keeper.gemspec
CHANGED
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.require_paths = ["lib"]
|
29
29
|
|
30
30
|
# Uncomment to register a new dependency of your gem
|
31
|
-
spec.add_dependency "parallel", '
|
31
|
+
spec.add_dependency "parallel", '>= 1.20.1', '< 2'
|
32
32
|
spec.add_dependency "rubocop", '>= 1.13.0'
|
33
33
|
spec.add_dependency "rubocop-ast", '>= 1.4.1'
|
34
34
|
|
data/exe/code_keeper
CHANGED
File without changes
|
data/lib/code_keeper/finder.rb
CHANGED
@@ -20,7 +20,7 @@ module CodeKeeper
|
|
20
20
|
if FileTest.file?(edge)
|
21
21
|
file_or_dir_paths << edge unless file_or_dir_paths.include?(edge)
|
22
22
|
else
|
23
|
-
Dir.glob(
|
23
|
+
Dir.glob("#{edge}/**/*").each do |path|
|
24
24
|
file_or_dir_paths << path unless file_or_dir_paths.include?(path)
|
25
25
|
end
|
26
26
|
end
|
data/lib/code_keeper/version.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,34 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: code_keeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yusuke Ebihara
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-11 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: parallel
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
16
15
|
requirements:
|
17
|
-
- - "
|
16
|
+
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
18
|
version: 1.20.1
|
19
|
+
- - "<"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2'
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
23
25
|
requirements:
|
24
|
-
- - "
|
26
|
+
- - ">="
|
25
27
|
- !ruby/object:Gem::Version
|
26
28
|
version: 1.20.1
|
29
|
+
- - "<"
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: '2'
|
27
32
|
- !ruby/object:Gem::Dependency
|
28
33
|
name: rubocop
|
29
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,7 +101,6 @@ metadata:
|
|
96
101
|
homepage_uri: https://github.com/ebihara99999/code_keeper
|
97
102
|
source_code_uri: https://github.com/ebihara99999/code_keeper/
|
98
103
|
changelog_uri: https://github.com/ebihara99999/code_keeper/blob/main/CHANGELOG.md
|
99
|
-
post_install_message:
|
100
104
|
rdoc_options: []
|
101
105
|
require_paths:
|
102
106
|
- lib
|
@@ -111,8 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
115
|
- !ruby/object:Gem::Version
|
112
116
|
version: '0'
|
113
117
|
requirements: []
|
114
|
-
rubygems_version: 3.
|
115
|
-
signing_key:
|
118
|
+
rubygems_version: 3.6.2
|
116
119
|
specification_version: 4
|
117
120
|
summary: Measures metrics about complexity and size.
|
118
121
|
test_files: []
|