video-torrent-info 0.1.26 → 0.1.27
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +9 -0
- data/ext/torrent_client/extconf.rb +4 -2
- data/lib/video_torrent_info/version.rb +1 -1
- data/spec/spec_helper.rb +3 -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: 7a8f07209d8b2b0ee179f02dd2206cd61faed2f7
|
4
|
+
data.tar.gz: 0cc98702291cf732f1c3c583f38484ead5a3a16d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3a89df1cb148c9c0cf94b8a3f1b5c747164aa93769427a0d1b1bcefe524c4ab551000fa160d2d3d3779514cb199935a0ab291a7e6f978b62f12386fd0000dc1
|
7
|
+
data.tar.gz: 79cebd40059730af3fe53d7d07a973aed3d471c52dfa4b399ed2b00156e423d446409b60cb096b389522fe88dace2e0d6e4efe2b3d2fba8af3eebf264c104644
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -7,7 +7,10 @@ GIT
|
|
7
7
|
GEM
|
8
8
|
remote: http://rubygems.org/
|
9
9
|
specs:
|
10
|
+
codeclimate-test-reporter (0.4.8)
|
11
|
+
simplecov (>= 0.7.1, < 1.0.0)
|
10
12
|
diff-lcs (1.2.5)
|
13
|
+
docile (1.1.5)
|
11
14
|
ffmpeg-video-info (0.2.13)
|
12
15
|
mini_portile2
|
13
16
|
json (1.8.3)
|
@@ -31,6 +34,11 @@ GEM
|
|
31
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
32
35
|
rspec-support (~> 3.4.0)
|
33
36
|
rspec-support (3.4.1)
|
37
|
+
simplecov (0.11.2)
|
38
|
+
docile (~> 1.1.0)
|
39
|
+
json (~> 1.8)
|
40
|
+
simplecov-html (~> 0.10.0)
|
41
|
+
simplecov-html (0.10.0)
|
34
42
|
|
35
43
|
PLATFORMS
|
36
44
|
ruby
|
@@ -38,6 +46,7 @@ PLATFORMS
|
|
38
46
|
DEPENDENCIES
|
39
47
|
bencode!
|
40
48
|
bundler
|
49
|
+
codeclimate-test-reporter
|
41
50
|
ffmpeg-video-info
|
42
51
|
mini_portile2
|
43
52
|
rake-compiler
|
@@ -90,8 +90,10 @@ file = "http://downloads.sourceforge.net/project/boost/boost/#{boost_recipe.vers
|
|
90
90
|
boost_recipe.files = [file]
|
91
91
|
|
92
92
|
openssl_recipe = OpenSSLRecipe.new('openssl', '1.0.2f')
|
93
|
-
|
94
|
-
openssl_recipe.
|
93
|
+
openssl_recipe.files << {
|
94
|
+
url: "https://www.openssl.org/source/old/#{openssl_recipe.version.gsub(/[a-z]*/, '')}/openssl-#{openssl_recipe.version}.tar.gz",
|
95
|
+
sha256: '932b4ee4def2b434f85435d9e3e19ca8ba99ce9a065a61524b429a9d5e9b2e9c'
|
96
|
+
}
|
95
97
|
|
96
98
|
libtorrent_recipe = LibtorrentRecipe.new('libtorrent', '1.0.8')
|
97
99
|
file = "https://codeload.github.com/arvidn/libtorrent/tar.gz/libtorrent-#{libtorrent_recipe.version.gsub('.', '_')}"
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: video-torrent-info
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.27
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pavel Tatarsky
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-02
|
11
|
+
date: 2016-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffmpeg-video-info
|