cambridge_dict 0.2.3 → 0.3.0

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
  SHA256:
3
- metadata.gz: f6ced5f541aa52f47a68c54450b7763bbf904a6ddb61287b9c0fe9affbf1e5c9
4
- data.tar.gz: 3f9e664f60ad00d6afc9ff97bbc674133fa4a7deb1294d2f3c48e41b1e035ccb
3
+ metadata.gz: 7b1a1cd7771bcdca2f9784cbcb7d68bb65d685e06b5387a9ac1c1090529339f0
4
+ data.tar.gz: fa35b9a0d9c7640b1a4f71c0e01ec0ab913a9781026e9ed4ecaecd2341aebefe
5
5
  SHA512:
6
- metadata.gz: 77dd6ddc26ec659636cfbc166acbea179be8cb80eeabebfbe4e125360d440cb7d97bd50ad04b6b4e943dd99bb318647112fa8d0019c132e4dd549d7d98dbaba9
7
- data.tar.gz: 8b63b295e1dd76f3def1a961f0952b54ad831d46b79e65be92f5d0fd49573ae7f2ed8e962a27b4a5e72ce5ada3d1d99ebb24801b2b5cef8d95959fbcc87d0190
6
+ metadata.gz: dd1fac189c809b80bb3938a29119efba3e834c4c9149caa4a8377ddee9eb1d6fbda8003bbd8c90434a85f7f632144113f7540774758374ff0a555a1925a19bf5
7
+ data.tar.gz: c338c5002025478c39951420698eee13cd2f4db41d28dd1cc9d90fafbb81c2cc04001935302c4d14033c0e1c3e56512c3b50a4695e15afdcb69eadc5557f157b
data/README.md CHANGED
@@ -64,6 +64,10 @@ return if result.nil?
64
64
  :source=>"cald4-us",
65
65
  :text=>"in return: ",
66
66
  :translation=>nil,
67
+
68
+ # sometimes words is returned
69
+ result = client.lookup("a", language: "en")
70
+ result[:words] => ["A", "a"]
67
71
  ```
68
72
 
69
73
  ## Webserver Setup
@@ -1,3 +1,3 @@
1
1
  module CambridgeDict
2
- VERSION = "0.2.3"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -37,17 +37,23 @@ module CambridgeDict
37
37
  encoded_word = PARSER.escape(word)
38
38
  wiki_verbs = fetch_verbs("#{@wiki_base}/#{encoded_word}")
39
39
 
40
- word = extract_word(doc)
40
+ words = extract_word(doc)
41
41
 
42
- return nil if word.nil?
42
+ return nil if words.nil?
43
43
 
44
- {
45
- word: word,
44
+ resp = {
45
+ word: words&.last,
46
46
  pos: extract_pos(doc),
47
47
  verbs: wiki_verbs,
48
48
  pronunciations: extract_pronunciation(doc),
49
49
  definitions: extract_definitions(doc)
50
50
  }
51
+
52
+ if words.size > 1
53
+ resp[:words] = words
54
+ end
55
+
56
+ resp
51
57
  end
52
58
 
53
59
  def lookup!(word, language: 'en')
@@ -86,7 +92,7 @@ module CambridgeDict
86
92
  doc = Nokogiri::HTML(response.body)
87
93
  verbs = []
88
94
 
89
- rows = doc.css('tr > td > p')
95
+ rows = doc.css('table:not(.toccolours) tr > td > p')
90
96
 
91
97
  lines = rows.map {|i| i.children.collect {|c| c.text } }.flatten.map(&:strip).reject(&:empty?)
92
98
 
@@ -99,7 +105,7 @@ module CambridgeDict
99
105
  end
100
106
 
101
107
  def extract_word(doc)
102
- doc.at_css('.superentry .tb')&.text
108
+ doc.at_css('.superentry .tb')&.text&.split ", "
103
109
  end
104
110
 
105
111
  def extract_pos(doc)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cambridge_dict
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben D'Angelo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-26 00:00:00.000000000 Z
11
+ date: 2024-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri