suika 0.1.0 → 0.1.1

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: 41135bca7252d6e52d8c13c52ca08446ebe79ffe388f585a1739976e5b26ad4f
4
- data.tar.gz: 22e021383f5169c264392cf4e1c4cd185319f810d86c2c8e85000b80ac493ccd
3
+ metadata.gz: 24d1a6401851f6ca9fa7b4ea11d1966110b33c736499e5ad4facffda746d135d
4
+ data.tar.gz: 46763eabe75de50858ecfd98e92adee305d837033c996c8da2faeac5d56c694f
5
5
  SHA512:
6
- metadata.gz: 534e3c4c67612fcf0c052057dbb85b649cba037517c9c500c2a3e20e8f0cae97e734b71fcce7ff47ba1a55d4b99fd5fcdab0be26f14addddc3728c784d1e8966
7
- data.tar.gz: 8f929702297098e8c3439170323205e9c58f6f5f9735192604bd08566f4f20c8ae1d603185126636097846df45e45c6e7141380fea3e2b449bea3e6c73bd983d
6
+ metadata.gz: '01690ace19b17fb68a368fc1d7a572a079c1d19876204ed85a239efbf6a5a2f4adcd5bab5f9d4f6c7c83dc54ff63e0c5a3c99819f88fed81065a96925bc27c5f'
7
+ data.tar.gz: 35b773639f6379a788f9dd3178e857752090420e406783e1abc27b276aa0c89f17b393a9c5ff60dc273f762b26c55f5155f5baa2a3723faaa1d8026d27b71c64
@@ -0,0 +1,5 @@
1
+ # 0.1.1
2
+ - Fix specification of class in CharDef.char_type.
3
+
4
+ # 0.1.0
5
+ - First release.
@@ -7,7 +7,7 @@ module Suika
7
7
  def self.char_type(ch)
8
8
  code = ch.unpack1('U*')
9
9
  CHAR_TYPES.find do |ctype|
10
- Object.const_get("CharDef::#{ctype}").any? { |r| r.include?(code) }
10
+ Object.const_get("::Suika::CharDef::#{ctype}").any? { |r| r.include?(code) }
11
11
  end
12
12
  end
13
13
 
@@ -3,5 +3,5 @@
3
3
  # Suika is a Japanese morphological analyzer written in pure Ruby.
4
4
  module Suika
5
5
  # The version of Suika you are using.
6
- VERSION = '0.1.0'
6
+ VERSION = '0.1.1'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: suika
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-04 00:00:00.000000000 Z
11
+ date: 2020-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rambling-trie
@@ -35,6 +35,7 @@ files:
35
35
  - ".rspec"
36
36
  - ".rubocop.yml"
37
37
  - ".travis.yml"
38
+ - CHANGELOG.md
38
39
  - CODE_OF_CONDUCT.md
39
40
  - Gemfile
40
41
  - LICENSE.txt