itaiji 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb078705a0156b74ef5f8dd9564bf3a053159304
4
- data.tar.gz: 70267aa935a773a47757d04a9fbae5b7f1893da3
3
+ metadata.gz: e780689b16b5f4dd33a975605549612e52b36337
4
+ data.tar.gz: d2e0bdcc06b54d392777c5a630e49fcda87b7086
5
5
  SHA512:
6
- metadata.gz: ea544f016dc40f8f0996e481333f8c71be0cc7f87bbebb7d9819db363e12c27d99aa56e04242fd4730f3db0db0ff8d78fc496578d002ccdf6f81affbf7cefcc2
7
- data.tar.gz: 19aeaf8837e8f3891d23f7dd3fa435b5f0322ab0d0ec4b146e14353da5dbaeaa6836ece1f5e44317e05851bf3d874e6133b29171c3c70da55f9a7556ecea498a
6
+ metadata.gz: abcf7b0a3bd9f4984dea36915ba52ded858fc4f29518e8ec9ac6f046249746fbf367b06bc0cac7685cf1c5441e07957391dcb622eb96014baa5db382cee870ae
7
+ data.tar.gz: 5634d8a0ecc655b3e1ae21cc883bafc664c962b9fff4ed0505a274c47fb5b0488468afa52ebde5cc561b598423d1ff17b40ff02dd493ac854b66b10322c5c907
data/README.md CHANGED
@@ -5,10 +5,9 @@
5
5
  [![Test Coverage](https://codeclimate.com/github/camelmasa/itaiji/badges/coverage.svg)](https://codeclimate.com/github/camelmasa/itaiji)
6
6
  [![Dependency Status](https://gemnasium.com/camelmasa/itaiji.svg)](https://gemnasium.com/camelmasa/itaiji)
7
7
 
8
-
9
8
  Convert japanese itaiji(異体字) to seijitai(正字体).
10
- Instration
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
- Source
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
@@ -1,4 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
2
3
 
3
4
  require 'benchmark'
4
5
  require 'itaiji'
data/bin/fetch CHANGED
@@ -1,4 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
2
3
 
3
4
  require 'yaml'
4
5
  require 'itaiji/fetcher'
@@ -1,3 +1,3 @@
1
1
  module Itaiji
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
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.0
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-06-30 00:00:00.000000000 Z
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