jgm-cloudlib 0.2.1 → 0.2.2
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.
- data/cloudlib.gemspec +1 -1
- data/lib/cloudlib.rb +2 -2
- metadata +1 -1
data/cloudlib.gemspec
CHANGED
data/lib/cloudlib.rb
CHANGED
@@ -142,12 +142,12 @@ class Entry
|
|
142
142
|
# The form ti='word1 word2' may also be used; entries will only match
|
143
143
|
# if their titles contain both word1 and word2.
|
144
144
|
def self.query(query_string, numitems=10, token=nil)
|
145
|
-
query_parts = query_string.downcase.scan(/((ti(?:tle)?|au(?:thors?)?|jo(?:urnal)?|bo(?:ooktitle)?|pu(?:blisher)?|ad(?:ddress)?|ed(?:itors?)?|ye(?:ar)?)
|
145
|
+
query_parts = query_string.downcase.scan(/((ti(?:tle)?|au(?:thors?)?|jo(?:urnal)?|bo(?:ooktitle)?|pu(?:blisher)?|ad(?:ddress)?|ed(?:itors?)?|ye(?:ar)?)\s*([<=>])\s*('[^']*'|"[^"]*"|\S*)|\S+)\s*/)
|
146
146
|
query = query_parts.reject {|part| part[0] == '*'}.map do |part|
|
147
147
|
whole, key, comparison, val = part
|
148
148
|
if val then val = val.gsub(/^['"](.*)['"]$/, "\\1") end
|
149
149
|
if not val then val = whole end
|
150
|
-
key_full = case key
|
150
|
+
key_full = case key[0..1]
|
151
151
|
when 'ti'
|
152
152
|
'title'
|
153
153
|
when 'au'
|