ruby-jdict 0.0.4 → 0.0.5

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: c4521589d28c7f981b327e9a174e4355ac11b328
4
- data.tar.gz: 4ad64f828f4d52547d2f9a087ff8782b1b14359b
3
+ metadata.gz: 05f9bcda4ba3d631badbad8fb990c13938326a50
4
+ data.tar.gz: 7ce6e97571588b840b420c59a37f78bccd54b7de
5
5
  SHA512:
6
- metadata.gz: eeb61907a486d27fb455ca3331210b44953cb14554731032cd1489eb9f9f17936322e4656c8c801f511c339c5c97b492fbaf9a70384b2e9c10356c1762bb3b2c
7
- data.tar.gz: 9c132690a408b751f715713688310531b3eca089076eacfe89d173fe724e149d7375c38a55d81de1c9e6c4bc80ca053e306437cef8eeb107c2618f66867464d4
6
+ metadata.gz: f0b02e7ef99cbfb72039eefd58c3812d467bad88afd085541cc9ea5f2af093120a280dca1f5f50a9c0612583f5ec48b15b1967c1bc15b68b086bbde5b493758a
7
+ data.tar.gz: a3bd0049ce1f5747f7d70cd0a602bdbdb4c9e4bd2ef2b6a4e7125aca5c8554872fe59e038b131bf7cbd13a2478e5af355dba2fde008beb1caa26cb87a39bb179
data/README.md CHANGED
@@ -13,3 +13,8 @@ gem install ruby-jdict
13
13
  See [this](https://github.com/Ruin0x11/ruby-jdict/blob/master/examples/query.rb) example for basic usage.
14
14
 
15
15
  If the dictionary file is not found, you will be prompted to download it.
16
+
17
+ ## Issues
18
+ * The code for inserting Entry objects into the database is horrible. Should create multiple tables for each datatype instead of a single table for all datatypes.
19
+ * Some routines need to be generalized to allow for the usage of dictionaries besides JMDict (like Tatoeba or KANJIDIC).
20
+ * Many functions are getting too large/unreadable.
@@ -1,5 +1,6 @@
1
- require_relative '../dictionary.rb'
2
- require_relative '../downloader.rb'
1
+ require 'jdict'
2
+ require 'dictionary'
3
+ require 'downloader'
3
4
 
4
5
  module JDict
5
6
  class JMDict < Dictionary
@@ -1,3 +1,3 @@
1
1
  module JDict
2
- Version = '0.0.4'
2
+ Version = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-jdict
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Pickering