jmdict 1.9.0 → 1.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50e74e443e242733de9d3d9031efeba47e6a7d38
4
- data.tar.gz: d683f0678b436503ba017551100ce348c751fc6e
3
+ metadata.gz: 0821ca8ea8143716c272a4eb71567f17029c312a
4
+ data.tar.gz: 45a61791543e6b0e8f2246db0086fdc4d4a4728d
5
5
  SHA512:
6
- metadata.gz: 22abdee7ee5daee1b77d7b5dee2aa998d64cd3f13f73889598753780cae4273109d15cd28376e5c900867540550aa8900559870bfab6a95e8f89d8c6a71356fd
7
- data.tar.gz: 3b1d66c42fc6a1aef0a69124108d5e1a391125c4a2b3e7458f8dc6ebfb451f17ce2c581a61ab6967af66b6a7bbf62273d1eb82a6e9d9c546072f188245588b8d
6
+ metadata.gz: 26bbe2713eb64b4880ec342e0432ebfbd68b0366fa8b53686fc51bdeb208f33f9e87c53b8c921eafd654a6dcd7d0f7e39f57b3f932804def992a01b3c9c00256
7
+ data.tar.gz: 27b9675ac3b9c1f66a91206ede928a1db7fe0b339171152bd7315e405d58d497f6de06945cfe0a0d3d6ac156097a78c650e56a01b5ad345cc3da66854775ceff
data/README.md CHANGED
@@ -59,7 +59,7 @@ Please read the [DTD](view-source:http://www.edrdg.org/jmdict/dtd-jmdict.xml) fo
59
59
 
60
60
  ## Versioning
61
61
 
62
- I decided to put a version number that follows the same pattern as the official DTD revision version for aknowledge the compatibility of this gem with the XML file used.
62
+ I decided to put a version number that follows the same pattern as the official DTD revision version for aknowledge the compatibility of this gem with the XML file used. The minor number is reserved for bugfixes or changes of the gem.
63
63
 
64
64
  ## Performance
65
65
 
@@ -9,9 +9,10 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Ramiro Antonio"]
10
10
  spec.email = ["ramiro.antonio@outlook.com"]
11
11
 
12
- spec.summary = %q{A gem to get parsed entries of the JMDict Japanese dictionary}
12
+ spec.summary = %q{A wrapper for JMDict (http://www.edrdg.org/jmdict/edict_doc.html)}
13
13
  spec.description = %q{This gem parses the JMDict XML file to get a more friendly hash interface for its entries}
14
14
  spec.homepage = "https://github.com/r-antonio/jmdict"
15
+ spec.license = "MIT"
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
18
  f.match(%r{^(test|spec|features)/})
@@ -22,5 +23,5 @@ Gem::Specification.new do |spec|
22
23
 
23
24
  spec.add_development_dependency "bundler", "~> 1.16"
24
25
  spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_dependency "nokogiri"
26
+ spec.add_dependency "nokogiri", "~> 1.7"
26
27
  end
@@ -1,3 +1,3 @@
1
1
  class JMDict
2
- VERSION = "1.9.0"
2
+ VERSION = "1.9.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jmdict
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramiro Antonio
@@ -42,16 +42,16 @@ dependencies:
42
42
  name: nokogiri
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '1.7'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '1.7'
55
55
  description: This gem parses the JMDict XML file to get a more friendly hash interface
56
56
  for its entries
57
57
  email:
@@ -71,7 +71,8 @@ files:
71
71
  - lib/jmdict.rb
72
72
  - lib/jmdict/version.rb
73
73
  homepage: https://github.com/r-antonio/jmdict
74
- licenses: []
74
+ licenses:
75
+ - MIT
75
76
  metadata: {}
76
77
  post_install_message:
77
78
  rdoc_options: []
@@ -92,5 +93,5 @@ rubyforge_project:
92
93
  rubygems_version: 2.5.1
93
94
  signing_key:
94
95
  specification_version: 4
95
- summary: A gem to get parsed entries of the JMDict Japanese dictionary
96
+ summary: A wrapper for JMDict (http://www.edrdg.org/jmdict/edict_doc.html)
96
97
  test_files: []