c3d 0.4.6 → 0.4.7
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 +4 -4
- data/lib/c3d/actors/assemble.rb +6 -1
- data/lib/c3d/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c496f93bbf5c8060470bf6d0615ae1842d1caf4
|
|
4
|
+
data.tar.gz: f95355f2f631fbd5e656a7c5573c27ecf2756587
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24cdc7831a657716a6fb42f098580c76039aeec2b6161e0623219ff295ed136ba2e84f68e67c9a10c60aa520e42e9bc1c0a0f5dba8ec2db8116266f13b036f34
|
|
7
|
+
data.tar.gz: 7ca634f3b9eef8fd7cd5e2a778b32a2777b6456b28757f1e416e8f0b1f1b73ad946095f1a350a597fe32f9a13f894b5624402b05a01bc5d0cd43a48399fff76f
|
data/lib/c3d/actors/assemble.rb
CHANGED
|
@@ -103,6 +103,7 @@ module C3D
|
|
|
103
103
|
|
|
104
104
|
def get_the_blob blob, contract
|
|
105
105
|
begin
|
|
106
|
+
btih = blob[2..41]
|
|
106
107
|
dn = blob[42..-1]
|
|
107
108
|
blob_file = File.join(ENV['BLOBS_DIR'], dn)
|
|
108
109
|
if File.exists? blob_file
|
|
@@ -111,9 +112,13 @@ module C3D
|
|
|
111
112
|
sha1_trun = sha1_full[0..23]
|
|
112
113
|
if sha1_trun == dn
|
|
113
114
|
@content << { contract => blob }
|
|
114
|
-
puts "[C3D::#{Time.now.strftime( "%F %T" )}]
|
|
115
|
+
puts "[C3D::#{Time.now.strftime( "%F %T" )}] Adding to cache >>\t" + contract
|
|
115
116
|
return true
|
|
116
117
|
end
|
|
118
|
+
else
|
|
119
|
+
link = "magnet:?xt=urn:btih:" + btih + "&dn=" + dn
|
|
120
|
+
torrent = $puller.create link
|
|
121
|
+
@content << { contract => "currently acquiring please check back." }
|
|
117
122
|
end
|
|
118
123
|
return false
|
|
119
124
|
rescue
|
data/lib/c3d/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION ||= "0.4.
|
|
1
|
+
VERSION ||= "0.4.7"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: c3d
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Casey Kuhlman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|