tibetan 0.1.2 → 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: 6a99a8e45fb7a5b6fed9a82889c461a1ceec66df63086ec14e6ae60c784ae3c3
4
- data.tar.gz: ba0c75c246e09eea0ea54c4838854e419954c7b8aef1f3ed6edcd6b6beca3b80
3
+ metadata.gz: 4ae545936f34ae071778e0c393f2823541fd185a03891a05150e08e1093b82b4
4
+ data.tar.gz: 121c95c185557a0411164b0ab5cbd742ddeec6a92d10af3935ae5b672c25a82d
5
5
  SHA512:
6
- metadata.gz: a9c5c6085a9feada4da87b7017efc377cf25bbe530d45834eaf84d5ba781229df1ddf8fc7be515a911a1d4556ec879740830a871212b6a9dfb648c60221b1c62
7
- data.tar.gz: 8cf0da67912ae5beedb1a2eda338b8477816d4d1627328876cc5f4cdc3debb915a9912fbafed71de00f9d57be2800174f75bd03a4685f536fa36f6b2c900215d
6
+ metadata.gz: 7c0d643ec58d358e566906907935392656091f537d07f6098877b2a38890a3300cda5ef76295ef6f19ca8e1bdeb23f4ed3900a3e057fc1ece165cda492ed4d86
7
+ data.tar.gz: 851bae4b76b7b09312619683716e4356d857b20e76846aa1f42f394d8742fe05b684300b6e2ca5ecb176dc9590ea3787a1f3a95c5475f269e8d24f6bdcf78d0c
data/CHANGELOG.md ADDED
@@ -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
data/Gemfile.lock CHANGED
@@ -1,22 +1,22 @@
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/
8
8
  specs:
9
- minitest (5.11.3)
10
- rake (10.5.0)
9
+ minitest (5.25.5)
10
+ rake (13.2.1)
11
11
 
12
12
  PLATFORMS
13
13
  ruby
14
14
 
15
15
  DEPENDENCIES
16
- bundler (~> 1.16)
17
- minitest (~> 5.0)
18
- rake (~> 10.0)
16
+ bundler (~> 2.6)
17
+ minitest (~> 5.25)
18
+ rake (~> 13.2)
19
19
  tibetan!
20
20
 
21
21
  BUNDLED WITH
22
- 1.16.2
22
+ 2.6.7
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.4"
3
3
  end
data/tibetan.gemspec CHANGED
@@ -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
 
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
23
 
24
- spec.add_development_dependency "bundler", "~> 1.16"
25
- spec.add_development_dependency "rake", "~> 10.0"
26
- spec.add_development_dependency "minitest", "~> 5.0"
24
+ spec.add_development_dependency "bundler", "~> 2.6"
25
+ spec.add_development_dependency "rake", "~> 13.2"
26
+ spec.add_development_dependency "minitest", "~> 5.25"
27
27
  end
metadata CHANGED
@@ -1,14 +1,13 @@
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.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - rovetz
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2018-10-03 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -16,43 +15,44 @@ dependencies:
16
15
  requirements:
17
16
  - - "~>"
18
17
  - !ruby/object:Gem::Version
19
- version: '1.16'
18
+ version: '2.6'
20
19
  type: :development
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
- version: '1.16'
25
+ version: '2.6'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: rake
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
30
  - - "~>"
32
31
  - !ruby/object:Gem::Version
33
- version: '10.0'
32
+ version: '13.2'
34
33
  type: :development
35
34
  prerelease: false
36
35
  version_requirements: !ruby/object:Gem::Requirement
37
36
  requirements:
38
37
  - - "~>"
39
38
  - !ruby/object:Gem::Version
40
- version: '10.0'
39
+ version: '13.2'
41
40
  - !ruby/object:Gem::Dependency
42
41
  name: minitest
43
42
  requirement: !ruby/object:Gem::Requirement
44
43
  requirements:
45
44
  - - "~>"
46
45
  - !ruby/object:Gem::Version
47
- version: '5.0'
46
+ version: '5.25'
48
47
  type: :development
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - "~>"
53
52
  - !ruby/object:Gem::Version
54
- version: '5.0'
55
- description: Converts Tibetan text to the Roman (Latin) script
53
+ version: '5.25'
54
+ description: Romanization (transliteration) of Tibetan. Converts Tibetan text to the
55
+ Roman (Latin) script using THL EWTS (Extended Wylie Transliteration Scheme)
56
56
  email:
57
57
  - zakbox@gmail.com
58
58
  executables: []
@@ -61,6 +61,7 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
63
  - ".travis.yml"
64
+ - CHANGELOG.md
64
65
  - CODE_OF_CONDUCT.md
65
66
  - Gemfile
66
67
  - Gemfile.lock
@@ -76,7 +77,6 @@ homepage: https://github.com/rovetz/tibetan
76
77
  licenses:
77
78
  - MIT
78
79
  metadata: {}
79
- post_install_message:
80
80
  rdoc_options: []
81
81
  require_paths:
82
82
  - lib
@@ -91,9 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  - !ruby/object:Gem::Version
92
92
  version: '0'
93
93
  requirements: []
94
- rubyforge_project:
95
- rubygems_version: 2.7.7
96
- signing_key:
94
+ rubygems_version: 3.6.7
97
95
  specification_version: 4
98
96
  summary: Romanization (transliteration) of Tibetan
99
97
  test_files: []