mymedia 0.5.1 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/mymedia.rb +53 -4
- data.tar.gz.sig +0 -0
- metadata +22 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0549b56450b11fe46c8c2b51e9d77258936651dad8a6768fc97a8dc5c6aaac26'
|
4
|
+
data.tar.gz: 39526f96af64fc8809b27d8debb6ad00c98ac559d9530d2cab79dd0bed832420
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 815295d51895458924a515ae171d7f8886585c2b957de9c511d290a32c4b72e89758bb30adc2bd7320291c3a73a2c0dbd13aedd8e42b04787c2f0b5c2fea6c53
|
7
|
+
data.tar.gz: 1b9ddf1205599269266c5fc544bbaf6ed4953358c3555048c77a21d864fe9cd8a500b4d08f3eda4d474cb0653d1ca8c6d11eb851760c1d62b272476d8c93100d
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/lib/mymedia.rb
CHANGED
@@ -11,6 +11,7 @@ require 'dataisland'
|
|
11
11
|
require 'increment'
|
12
12
|
require 'simple-config'
|
13
13
|
require 'rxfileio'
|
14
|
+
require 'wordsdotdat'
|
14
15
|
|
15
16
|
|
16
17
|
module MyMedia
|
@@ -75,7 +76,7 @@ module MyMedia
|
|
75
76
|
dynarex = if FileX.exists? dynarex_filepath then
|
76
77
|
DxLite.new(dynarex_filepath)
|
77
78
|
else
|
78
|
-
DxLite.new(@schema)
|
79
|
+
DxLite.new(@schema, order: 'descending', debug: @debug)
|
79
80
|
end
|
80
81
|
|
81
82
|
dynarex.create record
|
@@ -95,14 +96,55 @@ module MyMedia
|
|
95
96
|
module IndexReader
|
96
97
|
include RXFRead
|
97
98
|
|
98
|
-
def browse()
|
99
|
+
def browse(startswith=nil)
|
99
100
|
|
100
101
|
json_filepath = "%s/%s/dynarex.json" % [@home, @public_type]
|
101
102
|
|
102
103
|
if FileX.exists? json_filepath then
|
103
104
|
|
104
105
|
dx = DxLite.new(json_filepath)
|
105
|
-
|
106
|
+
|
107
|
+
if startswith then
|
108
|
+
|
109
|
+
@stopwords = WordsDotDat.stopwords
|
110
|
+
q = startswith
|
111
|
+
|
112
|
+
r = dx.all.select do |x|
|
113
|
+
|
114
|
+
found = x.title.scan(/\b\w+/).select do |raw_word|
|
115
|
+
|
116
|
+
word = raw_word.downcase
|
117
|
+
word[0..(q.length-1)] == q and not @stopwords.include? word
|
118
|
+
|
119
|
+
end
|
120
|
+
|
121
|
+
found.any?
|
122
|
+
end
|
123
|
+
|
124
|
+
else
|
125
|
+
|
126
|
+
return dx.all
|
127
|
+
|
128
|
+
end
|
129
|
+
|
130
|
+
end
|
131
|
+
|
132
|
+
end
|
133
|
+
|
134
|
+
def find(keyword)
|
135
|
+
|
136
|
+
json_filepath = "%s/%s/dynarex.json" % [@home, @public_type]
|
137
|
+
|
138
|
+
if FileX.exists? json_filepath then
|
139
|
+
|
140
|
+
dx = DxLite.new(json_filepath)
|
141
|
+
|
142
|
+
return dx.all.find do |x|
|
143
|
+
|
144
|
+
regex = keyword.is_a?(String) ? /#{keyword}/i : keyword
|
145
|
+
x.title =~ regex
|
146
|
+
|
147
|
+
end
|
106
148
|
|
107
149
|
end
|
108
150
|
|
@@ -115,7 +157,13 @@ module MyMedia
|
|
115
157
|
if FileX.exists? json_filepath then
|
116
158
|
|
117
159
|
dx = DxLite.new(json_filepath)
|
118
|
-
|
160
|
+
|
161
|
+
return dx.all.select do |x|
|
162
|
+
|
163
|
+
regex = keyword.is_a?(String) ? /#{keyword}/i : keyword
|
164
|
+
x.title =~ regex
|
165
|
+
|
166
|
+
end
|
119
167
|
|
120
168
|
end
|
121
169
|
|
@@ -151,6 +199,7 @@ module MyMedia
|
|
151
199
|
@domain = @website[/[^\.]+\.[^\.]+$/]
|
152
200
|
|
153
201
|
@sps = c[:sps]
|
202
|
+
@omit_html_ext = c[:omit_html_ext]
|
154
203
|
|
155
204
|
@log = log
|
156
205
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mymedia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Robertson
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
bL55NDdi8BFHkNVohRBak7aqxsw41LJKy3UTP+4TzU5vyluDJMiscK6JJFaM4JiS
|
36
36
|
xtlAM0O5ZFe9QflatP+P8JnB
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date: 2022-
|
38
|
+
date: 2022-04-07 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: dir-to-xml
|
@@ -117,6 +117,26 @@ dependencies:
|
|
117
117
|
- - ">="
|
118
118
|
- !ruby/object:Gem::Version
|
119
119
|
version: 0.7.2
|
120
|
+
- !ruby/object:Gem::Dependency
|
121
|
+
name: wordsdotdat
|
122
|
+
requirement: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - "~>"
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0.2'
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: 0.2.0
|
130
|
+
type: :runtime
|
131
|
+
prerelease: false
|
132
|
+
version_requirements: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - "~>"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0.2'
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: 0.2.0
|
120
140
|
description:
|
121
141
|
email: digital.robertson@gmail.com
|
122
142
|
executables: []
|
metadata.gz.sig
CHANGED
Binary file
|