itaiji 0.3.0 → 0.3.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 +4 -4
- data/README.md +19 -11
- data/bin/{performance → benchmark} +1 -0
- data/bin/fetch +1 -0
- data/lib/itaiji/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e780689b16b5f4dd33a975605549612e52b36337
|
|
4
|
+
data.tar.gz: d2e0bdcc06b54d392777c5a630e49fcda87b7086
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abcf7b0a3bd9f4984dea36915ba52ded858fc4f29518e8ec9ac6f046249746fbf367b06bc0cac7685cf1c5441e07957391dcb622eb96014baa5db382cee870ae
|
|
7
|
+
data.tar.gz: 5634d8a0ecc655b3e1ae21cc883bafc664c962b9fff4ed0505a274c47fb5b0488468afa52ebde5cc561b598423d1ff17b40ff02dd493ac854b66b10322c5c907
|
data/README.md
CHANGED
|
@@ -5,10 +5,9 @@
|
|
|
5
5
|
[](https://codeclimate.com/github/camelmasa/itaiji)
|
|
6
6
|
[](https://gemnasium.com/camelmasa/itaiji)
|
|
7
7
|
|
|
8
|
-
|
|
9
8
|
Convert japanese itaiji(異体字) to seijitai(正字体).
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
## Instration
|
|
12
11
|
|
|
13
12
|
Add this line to your application's Gemfile:
|
|
14
13
|
|
|
@@ -22,8 +21,7 @@ Or install it yourself as:
|
|
|
22
21
|
|
|
23
22
|
$ gem install itaiji
|
|
24
23
|
|
|
25
|
-
Usage
|
|
26
|
-
-----
|
|
24
|
+
## Usage
|
|
27
25
|
|
|
28
26
|
```
|
|
29
27
|
converter = Itaiji::Converter.new
|
|
@@ -43,16 +41,26 @@ using Itaiji::Conversions
|
|
|
43
41
|
|
|
44
42
|
(only ruby version >= 2.0.0)
|
|
45
43
|
|
|
44
|
+
## Commands
|
|
46
45
|
|
|
47
|
-
Test
|
|
48
|
-
----
|
|
49
|
-
|
|
50
|
-
test command.
|
|
46
|
+
Test command.
|
|
51
47
|
|
|
52
48
|
```
|
|
53
49
|
rake
|
|
54
50
|
```
|
|
55
51
|
|
|
56
|
-
|
|
57
|
-
|
|
52
|
+
Fetch source file command.
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
bin/fetch
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Benchmark command.
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
bin/benchmark
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Source
|
|
65
|
+
|
|
58
66
|
http://wwwap.hi.u-tokyo.ac.jp/ships/itaiji_list.jsp
|
data/bin/fetch
CHANGED
data/lib/itaiji/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itaiji
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masahiro Saito
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -66,8 +66,8 @@ files:
|
|
|
66
66
|
- MIT-LICENSE
|
|
67
67
|
- README.md
|
|
68
68
|
- Rakefile
|
|
69
|
+
- bin/benchmark
|
|
69
70
|
- bin/fetch
|
|
70
|
-
- bin/performance
|
|
71
71
|
- itaiji.gemspec
|
|
72
72
|
- lib/itaiji.rb
|
|
73
73
|
- lib/itaiji/converter.rb
|