hangul 0.0.2 → 0.0.3

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: ec3ffd29165191c2592c684b5abb99d664b1b145
4
- data.tar.gz: 421600a8b74277bd0bf3d74a61110f1cbcee16e1
3
+ metadata.gz: 9094d2f349214ee1f6acebf2ec4ab7409bad1f07
4
+ data.tar.gz: 5047cde829ce2872d560554fb03eef2e8a5b8236
5
5
  SHA512:
6
- metadata.gz: b6d7730bb01aa6952fd0bf9ca230b13cdb482d24c9897604965e3401555cbe1a84ce8ec848dcc880f9759cfc77afb6efdd70aba5ff94c659327b35fa24688b41
7
- data.tar.gz: 70d8ba3f195fb34549cb392958548e7e97b19a3d680889e6d323f9d04907c36a738575aa44b0920b85da70e532a5700004187fa521704f30df7c105463896992
6
+ metadata.gz: 784b9d18e3053404b7d55a534733a94ab5c0f1226d17493a59b367e7ec8ffdb2155b41dc637bf64028680f8e923cc549d6e09e7d3179ea5a424e679db93be448
7
+ data.tar.gz: feea74f512087577a9d6e726363b41387ba216bd08c70fca845c1258f0e527b458808bd69031a34135de0019433f718a1c7b71aadc0b2dda0d89f388499f8dcf
@@ -1,11 +1,10 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'hangul/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "hangul"
8
- spec.version = Hangul::VERSION
7
+ spec.version = "0.0.3"
9
8
  spec.authors = ["aelaa"]
10
9
  spec.email = ["aelaau@gmail.com"]
11
10
  spec.description = %q{Hangul -> English transcription}
@@ -20,6 +19,6 @@ Gem::Specification.new do |spec|
20
19
 
21
20
  spec.add_development_dependency "bundler", "~> 1.3"
22
21
  spec.add_development_dependency "rake"
23
- spec.add_development_dependency "korean-string"
22
+ spec.add_runtime_dependency "korean-string"
24
23
 
25
24
  end
@@ -1,4 +1,3 @@
1
- require 'hangul/version'
2
1
  require 'table'
3
2
  require 'korean-string'
4
3
 
@@ -1,3 +1,5 @@
1
1
  require 'bundler/setup'
2
+ Bundler.require
3
+
2
4
  require 'minitest/autorun'
3
- require 'hangul'
5
+ require 'minitest/spec'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hangul
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - aelaa
@@ -45,7 +45,7 @@ dependencies:
45
45
  - - '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
- type: :development
48
+ type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
@@ -63,12 +63,10 @@ files:
63
63
  - Gemfile
64
64
  - Gemfile.lock
65
65
  - LICENSE
66
- - LICENSE.txt
67
66
  - README.md
68
67
  - Rakefile
69
68
  - hangul.gemspec
70
69
  - lib/hangul.rb
71
- - lib/hangul/version.rb
72
70
  - lib/table.rb
73
71
  - test/lib/hangul_test.rb
74
72
  - test/test_helper.rb
@@ -1,22 +0,0 @@
1
- Copyright (c) 2013 aelaau@gmail.com
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +0,0 @@
1
- module Hangul
2
- VERSION = "0.0.2"
3
- end