cobweb 1.0.15 → 1.0.16
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 +8 -8
- data/README.textile +1 -1
- data/lib/cobweb.rb +2 -2
- data/lib/cobweb_version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MjVmMzgyNjRjMGZkYzAyMTZiODRhNDJiOTljYzFjMmRmMjAxMjExZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OGVjMTJmM2Q5MTQzZDE0YWI5ZTUxMTg2NzM3MjIzNjVmOTQxMjEzYQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzQ2YTI5MDRlZWE2M2FjMTRkNGQ4YjAyOTRjOTIyN2EwNDg2ZjdhNTg5NDRj
|
|
10
|
+
ZTYzZDRkNTUzNjhlMzU4MjM4YWJiZGJlNDkyOGQyM2ExOWZiNGVmYmYzM2Ey
|
|
11
|
+
NmU0YzAyYmEzMGUwZmRjODM2OWU1MGE2MzNiZWRkODc4YmEzNDk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NGY0MzVlOTA0Mzg0MDIxMDNmOTQ0YmQ5NTVmODE3ZmUxZTg4MzY4NjM5Y2Jm
|
|
14
|
+
MDM5YTY0MTc3MzJiOGI5ODMxMDMyMGVlMDY4MzZhYWE5MGYyNGYwNzZiMWIw
|
|
15
|
+
Yjc1NTRhZjY0YjJhODdiMDk2OWQ3ZmNlZDA1YTk1Y2ZjMzFhMjE=
|
data/README.textile
CHANGED
data/lib/cobweb.rb
CHANGED
|
@@ -141,10 +141,10 @@ class Cobweb
|
|
|
141
141
|
# check if it has already been cached
|
|
142
142
|
if ((@options[:cache_type] == :crawl_based && redis.get(unique_id)) || (@options[:cache_type] == :full && full_redis.get(unique_id))) && @options[:cache]
|
|
143
143
|
if @options[:cache_type] == :crawl_based
|
|
144
|
-
puts "Cache hit in crawl for #{url}"
|
|
144
|
+
puts "Cache hit in crawl for #{url}" unless @options[:quiet]
|
|
145
145
|
content = HashUtil.deep_symbolize_keys(Marshal.load(redis.get(unique_id)))
|
|
146
146
|
else
|
|
147
|
-
puts "Cache hit for #{url}"
|
|
147
|
+
puts "Cache hit for #{url}" unless @options[:quiet]
|
|
148
148
|
content = HashUtil.deep_symbolize_keys(Marshal.load(full_redis.get(unique_id)))
|
|
149
149
|
end
|
|
150
150
|
else
|
data/lib/cobweb_version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cobweb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stewart McKee
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: redis
|
|
@@ -538,7 +538,8 @@ files:
|
|
|
538
538
|
- public/js/supersubs.js
|
|
539
539
|
- README.textile
|
|
540
540
|
homepage: http://github.com/stewartmckee/cobweb
|
|
541
|
-
licenses:
|
|
541
|
+
licenses:
|
|
542
|
+
- MIT
|
|
542
543
|
metadata: {}
|
|
543
544
|
post_install_message:
|
|
544
545
|
rdoc_options: []
|