tibetan 0.1.2 → 0.1.3

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: 6a99a8e45fb7a5b6fed9a82889c461a1ceec66df63086ec14e6ae60c784ae3c3
4
- data.tar.gz: ba0c75c246e09eea0ea54c4838854e419954c7b8aef1f3ed6edcd6b6beca3b80
3
+ metadata.gz: 0cba14bda9fd71eef49df1ff03a5873d6504b31ce8832126bd52ac3acb367b7f
4
+ data.tar.gz: 64a3fdfc1b5e069cfb75ffb376e2307a0b9b523adf4118671f1321e66d9d6382
5
5
  SHA512:
6
- metadata.gz: a9c5c6085a9feada4da87b7017efc377cf25bbe530d45834eaf84d5ba781229df1ddf8fc7be515a911a1d4556ec879740830a871212b6a9dfb648c60221b1c62
7
- data.tar.gz: 8cf0da67912ae5beedb1a2eda338b8477816d4d1627328876cc5f4cdc3debb915a9912fbafed71de00f9d57be2800174f75bd03a4685f536fa36f6b2c900215d
6
+ metadata.gz: b25d911de08a51879ed8f5ed46c44d04c30f655451edbcbaaf7349ea30009b74786fa811403680c17b67f2340af3cc1c6fc8f11126f634b8126010b4d8769441
7
+ data.tar.gz: d85b51722d4dfe0238a8354d724244d63fdd9276336dc433de6a2ed45a62047ca02f408ab4b1909abf50318ba3f360ce106eaeff3c148f6c80b9dba193e410cc
@@ -0,0 +1,4 @@
1
+ Version 0.1.0: Initial release
2
+ Version 0.1.1: Convert space to underscore; update tests
3
+ Version 0.1.2: Insert default vowel "a"; Split long phrase into small parts and transliterate separately; more tests
4
+ Version 0.1.3: References on Tibetan transliteration
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tibetan (0.1.2)
4
+ tibetan (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -19,4 +19,4 @@ DEPENDENCIES
19
19
  tibetan!
20
20
 
21
21
  BUNDLED WITH
22
- 1.16.2
22
+ 1.17.3
data/README.md CHANGED
@@ -39,6 +39,16 @@ Tibetan.t("༡༢༣") # => "123"
39
39
  Tibetan.t("༪") # => "0.5"
40
40
  ```
41
41
 
42
+ ## References
43
+ http://www.thlib.org/reference/transliteration/#!essay=/thl/ewts/meta/
44
+ http://www.thlib.org/reference/transliteration/teachingewts.pdf
45
+ http://www.thlib.org/reference/transliteration/phconverter.php
46
+ https://www.unicode.org/charts/PDF/U0F00.pdf
47
+ http://tibetan.spb.ru/lessons/wylie.phtml
48
+ https://github.com/gitpan/App-Lingua-BO-Wylie-Transliteration
49
+ https://github.com/BlueVajra/Wylie
50
+
51
+
42
52
  ## Development
43
53
 
44
54
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -1,3 +1,3 @@
1
1
  module Tibetan
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["zakbox@gmail.com"]
11
11
 
12
12
  spec.summary = "Romanization (transliteration) of Tibetan"
13
- spec.description = "Converts Tibetan text to the Roman (Latin) script"
13
+ spec.description = "Romanization (transliteration) of Tibetan. Converts Tibetan text to the Roman (Latin) script using THL EWTS (Extended Wylie Transliteration Scheme)"
14
14
  spec.homepage = "https://github.com/rovetz/tibetan"
15
15
  spec.license = "MIT"
16
16
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tibetan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - rovetz
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-03 00:00:00.000000000 Z
11
+ date: 2019-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,7 +52,8 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '5.0'
55
- description: Converts Tibetan text to the Roman (Latin) script
55
+ description: Romanization (transliteration) of Tibetan. Converts Tibetan text to the
56
+ Roman (Latin) script using THL EWTS (Extended Wylie Transliteration Scheme)
56
57
  email:
57
58
  - zakbox@gmail.com
58
59
  executables: []
@@ -61,6 +62,7 @@ extra_rdoc_files: []
61
62
  files:
62
63
  - ".gitignore"
63
64
  - ".travis.yml"
65
+ - CHANGELOG.md
64
66
  - CODE_OF_CONDUCT.md
65
67
  - Gemfile
66
68
  - Gemfile.lock
@@ -91,8 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
93
  - !ruby/object:Gem::Version
92
94
  version: '0'
93
95
  requirements: []
94
- rubyforge_project:
95
- rubygems_version: 2.7.7
96
+ rubygems_version: 3.0.2
96
97
  signing_key:
97
98
  specification_version: 4
98
99
  summary: Romanization (transliteration) of Tibetan