kitkat 0.0.2 → 1.0.0
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/.github/workflows/rubygem.yml +3 -5
- data/.rubocop.yml +4 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +4 -0
- data/exe/kitkat +1 -1
- data/kitkat.gemspec +1 -1
- data/lib/kitkat/database.rb +1 -1
- data/lib/kitkat/reader.rb +5 -5
- data/lib/kitkat/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17654438fa4ef7a3ed4c7050ccccfa152d315a233a3776e3ddc64a234f8f0d7b
|
|
4
|
+
data.tar.gz: 7a9d327cc6cc8cf6dbdaff076f4b1e0d3c6cc39822a8aeeb4d95b2db1f43aa0b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa9081036b32b79d977c32416db7ab733007cd6d55bb0ff2f898852a065a57cf556d579399dc0047083f6c2b29ae4e54ba4a56f6cb397e42b0d9ab9f339585fb
|
|
7
|
+
data.tar.gz: f9af84a84eebd3b1f7723b7fe3428ebb1eea95bf58cfb6677af8a70d0228ee0b64b93ef677e520ceeeb38e7fcb96168fda691e4fd0d165b706f7615ab7334419
|
|
@@ -11,15 +11,13 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
strategy:
|
|
13
13
|
matrix:
|
|
14
|
-
ruby-version: ['
|
|
14
|
+
ruby-version: ['3.2.1']
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v2
|
|
18
|
+
# https://github.com/ruby/setup-ruby#versioning
|
|
18
19
|
- name: Set up Ruby
|
|
19
|
-
|
|
20
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
21
|
-
# uses: ruby/setup-ruby@v1
|
|
22
|
-
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
|
20
|
+
uses: ruby/setup-ruby@v1
|
|
23
21
|
with:
|
|
24
22
|
ruby-version: ${{ matrix.ruby-version }}
|
|
25
23
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/.rubocop.yml
CHANGED
data/.tool-versions
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby 2.
|
|
1
|
+
ruby 3.2.1
|
data/CHANGELOG.md
CHANGED
data/exe/kitkat
CHANGED
data/kitkat.gemspec
CHANGED
data/lib/kitkat/database.rb
CHANGED
data/lib/kitkat/reader.rb
CHANGED
|
@@ -15,21 +15,21 @@ module Kitkat
|
|
|
15
15
|
freeze
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
def each(&
|
|
18
|
+
def each(&)
|
|
19
19
|
return enum_for(:each) unless block_given?
|
|
20
20
|
|
|
21
|
-
traverse(root, &
|
|
21
|
+
traverse(root, &)
|
|
22
22
|
|
|
23
23
|
self
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
private
|
|
27
27
|
|
|
28
|
-
def traverse(dir, &
|
|
28
|
+
def traverse(dir, &)
|
|
29
29
|
Dir[File.join(dir, '*')].each do |path|
|
|
30
|
-
yield FileInfo.new(path, root:
|
|
30
|
+
yield FileInfo.new(path, root:)
|
|
31
31
|
|
|
32
|
-
traverse(path, &
|
|
32
|
+
traverse(path, &) if File.directory?(path)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
end
|
data/lib/kitkat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitkat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Ruggio
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sqlite3
|
|
@@ -217,14 +217,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
217
217
|
requirements:
|
|
218
218
|
- - ">="
|
|
219
219
|
- !ruby/object:Gem::Version
|
|
220
|
-
version:
|
|
220
|
+
version: 3.2.1
|
|
221
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
222
222
|
requirements:
|
|
223
223
|
- - ">="
|
|
224
224
|
- !ruby/object:Gem::Version
|
|
225
225
|
version: '0'
|
|
226
226
|
requirements: []
|
|
227
|
-
rubygems_version: 3.
|
|
227
|
+
rubygems_version: 3.4.6
|
|
228
228
|
signing_key:
|
|
229
229
|
specification_version: 4
|
|
230
230
|
summary: File/Metadata Database Populator
|