ruby-pinyin-ez 0.5.0 → 0.5.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: 92a6c23a0492659ffbe8d356f6d845d060a4ac7c801669d9d59f742bac7c4bf6
4
- data.tar.gz: 9cbf2d4733d3ffe853cf8968d916a647d9f934f10de77eeecf6176c375edb135
3
+ metadata.gz: 4fbb5c1fbf8de981e4484e917a71e6b66fb27a14f791c1de3b1b6dc151ae1477
4
+ data.tar.gz: 93a68005c406777b70c15c2c353b72a1e62046ad102761cf211c3c6b91c208ae
5
5
  SHA512:
6
- metadata.gz: 9e2af60065a7a96c17bef6d5f9e3ccb069b575710f2c18cd561785bea898d5edd0d5bd6ea7a6a70375246e82c8f6804c5fe1959c7e117304dfeb7a17984fce9e
7
- data.tar.gz: 5845a4e2a627c32cc5dfe90490acdce961d3ebfa3f71b8ab58325110c47fc762744b8965fdbfbfac62c71c7d91ab335c5e0371bb55a2858dbb66b3a667295a91
6
+ metadata.gz: f73c2f81f162a861b4ceb801be4606211255809e4a8152f73834753c022b26236af4ef10569515bf03da3f20b26519888ae8d8ee3838bec7554a1082c6d1ef51
7
+ data.tar.gz: d2659490f1ea0bfdb08a0f9c178120cb684601c0b6b673663932a2eb50b1d7d3dce1eb2db5b89af4a213d34e021fe0b464d101d7bc68d8cdfabc866fe37d25d3
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module PinYin
2
+ VERSION = '0.5.1'
3
+ end
@@ -1,7 +1,7 @@
1
- require 'ruby-pinyin/util'
2
- require 'ruby-pinyin/value'
3
- require 'ruby-pinyin/punctuation'
4
- require 'ruby-pinyin/backend'
1
+ require 'ruby-pinyin-ez/util'
2
+ require 'ruby-pinyin-ez/value'
3
+ require 'ruby-pinyin-ez/punctuation'
4
+ require 'ruby-pinyin-ez/backend'
5
5
 
6
6
  module PinYin
7
7
  class <<self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-pinyin-ez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - hzyhzy
@@ -48,19 +48,19 @@ extra_rdoc_files: []
48
48
  files:
49
49
  - LICENSE
50
50
  - README.markdown
51
- - lib/ruby-pinyin.rb
52
- - lib/ruby-pinyin/backend.rb
53
- - lib/ruby-pinyin/backend/ezseg.rb
54
- - lib/ruby-pinyin/backend/mmseg.rb
55
- - lib/ruby-pinyin/backend/simple.rb
56
- - lib/ruby-pinyin/data/Mandarin.dat
57
- - lib/ruby-pinyin/data/Punctuations.dat
58
- - lib/ruby-pinyin/data/words.dat
59
- - lib/ruby-pinyin/data/words.dic
60
- - lib/ruby-pinyin/punctuation.rb
61
- - lib/ruby-pinyin/util.rb
62
- - lib/ruby-pinyin/value.rb
63
- - lib/ruby-pinyin/version.rb
51
+ - lib/ruby-pinyin-ez.rb
52
+ - lib/ruby-pinyin-ez/backend.rb
53
+ - lib/ruby-pinyin-ez/backend/ezseg.rb
54
+ - lib/ruby-pinyin-ez/backend/mmseg.rb
55
+ - lib/ruby-pinyin-ez/backend/simple.rb
56
+ - lib/ruby-pinyin-ez/data/Mandarin.dat
57
+ - lib/ruby-pinyin-ez/data/Punctuations.dat
58
+ - lib/ruby-pinyin-ez/data/words.dat
59
+ - lib/ruby-pinyin-ez/data/words.dic
60
+ - lib/ruby-pinyin-ez/punctuation.rb
61
+ - lib/ruby-pinyin-ez/util.rb
62
+ - lib/ruby-pinyin-ez/value.rb
63
+ - lib/ruby-pinyin-ez/version.rb
64
64
  homepage: https://github.com/hzyhzy/ruby-pinyin
65
65
  licenses:
66
66
  - BSD
@@ -1,3 +0,0 @@
1
- module PinYin
2
- VERSION = '0.5.0'
3
- end