annex_29 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +14 -14
- data/lib/annex_29/version.rb +1 -1
- data/lib/annex_29/word_segmentation.rb +2937 -2937
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc1576551585e266120d71025afc04dad1e1736c4a8af9ad8ea7007de3f9f0a4
|
4
|
+
data.tar.gz: 2deb9476413c3b45f041db13de6fa52cd1293d6542773fec025690bcbb07d9f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0e5d916066b1773dadf9935f9cbf7946d8fb1348c24041841336cf78368fda6957b19acb6ce89381c70ab97ffc8b7f8864b0df0e5ac164eeecec3e314d08f29
|
7
|
+
data.tar.gz: 0c63470f4138883a2028c4087914e33a23e21e10d320e7989dc3e237616e485b7fa0c4769378017295813dc5265377ab8ad8ff0f33cb914390ef835e20e1da1b
|
data/CHANGELOG.md
CHANGED
@@ -31,6 +31,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
31
31
|
|
32
32
|
---
|
33
33
|
|
34
|
+
[0.2.1] - 2024-06-30
|
35
|
+
- Fix mismatched indentation warnings in word_segmentation.rb file
|
36
|
+
- Delete unused variables
|
37
|
+
|
34
38
|
[0.2.0] - 2023-12-11
|
35
39
|
|
36
40
|
- Add .ruby-version, Gemfile.lock, and GH test suite [#3](https://github.com/Shopify/annex-29/pull/3)
|
data/Gemfile.lock
CHANGED
@@ -1,26 +1,26 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
annex_29 (0.2.
|
4
|
+
annex_29 (0.2.1)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
diff-lcs (1.5.
|
10
|
-
rake (13.1
|
11
|
-
rspec (3.
|
12
|
-
rspec-core (~> 3.
|
13
|
-
rspec-expectations (~> 3.
|
14
|
-
rspec-mocks (~> 3.
|
15
|
-
rspec-core (3.
|
16
|
-
rspec-support (~> 3.
|
17
|
-
rspec-expectations (3.
|
9
|
+
diff-lcs (1.5.1)
|
10
|
+
rake (13.2.1)
|
11
|
+
rspec (3.13.0)
|
12
|
+
rspec-core (~> 3.13.0)
|
13
|
+
rspec-expectations (~> 3.13.0)
|
14
|
+
rspec-mocks (~> 3.13.0)
|
15
|
+
rspec-core (3.13.0)
|
16
|
+
rspec-support (~> 3.13.0)
|
17
|
+
rspec-expectations (3.13.0)
|
18
18
|
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
-
rspec-support (~> 3.
|
20
|
-
rspec-mocks (3.
|
19
|
+
rspec-support (~> 3.13.0)
|
20
|
+
rspec-mocks (3.13.0)
|
21
21
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
-
rspec-support (~> 3.
|
23
|
-
rspec-support (3.
|
22
|
+
rspec-support (~> 3.13.0)
|
23
|
+
rspec-support (3.13.0)
|
24
24
|
|
25
25
|
PLATFORMS
|
26
26
|
arm64-darwin-22
|
data/lib/annex_29/version.rb
CHANGED