baran 0.1.3 → 0.1.4

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: 9c113913bc9751c8dccc46fef4cf58b552e2ef629e0cbcbecf4009f1fb0c9665
4
- data.tar.gz: b166d1eab9681981435367ec57d24ce0dd12f45086f7654cfee0ffc6b120e2ec
3
+ metadata.gz: d64ad8b3b3b0f9d1bd32ce37453a6bf70581f5e229883b2d78b5200c236f01cc
4
+ data.tar.gz: 703df213c544557522ac36ac16404d04f369fd24c03446928aed7c2cadca1be4
5
5
  SHA512:
6
- metadata.gz: 177b7eb08f07236e680316806fbf0f4fd2ef576ec36cf4005660503b594b90b023c1c29db54860b26990e65ea9ffa3b4d6dc94c913007b09cf018dd01d606754
7
- data.tar.gz: e7ec13bcadda327bb1ed691fc9bf55e8954f160bd33167549088baf92280a9e2b2c846450b15656034a46f3697f0c2513fee0ddda24528f56920c48606fb3e23
6
+ metadata.gz: 471f2d07989fce4ec393eaff5dc995ae721902f607632f00816d7d8652a5740be13c75d5bae8e2d30028243de05c1eabac259806ff97758c6987efaf619873dc
7
+ data.tar.gz: f74445571e79a792c9d485f06b943b4a84f8366e80f02036ef7be14b628a1e9124b385a39a543d5964490f52a00b234f29f349e2327744f07b20a19a5242d746
data/CHANGELOG.md CHANGED
@@ -15,4 +15,9 @@
15
15
 
16
16
  ## [0.1.3] - 2023-05-28
17
17
 
18
+ - Fix README
19
+
20
+ ## [0.1.4] - 2023-05-28
21
+
22
+ - Fix test
18
23
  - Fix README
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- baran (0.1.3)
4
+ baran (0.1.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -41,7 +41,7 @@ Splitting by the specified characters recursively.
41
41
 
42
42
  ```ruby
43
43
  splitter = Baran::RecursiveCharacterTextSplitter.new(
44
- separators: ["\nn", "\n", " ", ""]
44
+ separators: ["\n\n", "\n", " ", ""]
45
45
  )
46
46
  splitter.chunks(text)
47
47
  # => [{ cursor: 0, text: "..." }, ...]
data/lib/baran/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Baran
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baran
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moeki Kawakami