torrent-finder 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/torrent-finder/adapters/dmhy_adapter.rb +43 -0
- data/lib/torrent-finder/adapters/eztv_adapter.rb +5 -6
- data/lib/torrent-finder/adapters/popgo_adapter.rb +3 -6
- data/lib/torrent-finder/command.rb +8 -4
- data/lib/torrent-finder/version.rb +1 -1
- data/spec/adapters/dmhy_adapter_spec.rb +29 -0
- data/spec/adapters/eztv_adapter_spec.rb +1 -1
- data/spec/adapters/nyaa_adapter_spec.rb +1 -1
- data/spec/adapters/popgo_adapter_spec.rb +5 -6
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_DmhyAdapter/_list/should_list_first_page_of_torrent.yml +5525 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_DmhyAdapter/_search/should_search_torrent.yml +5007 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml +1737 -1609
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml +91 -4101
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_list/should_list_first_page_of_torrent.yml +1549 -2024
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_search/should_search_torrent.yml +34 -505
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list/should_list_first_page_of_torrent.yml +1876 -1277
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search/should_search_torrent.yml +1841 -1263
- metadata +9 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: torrent-finder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francis Chong
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -166,15 +166,19 @@ files:
|
|
166
166
|
- bin/torrent-finder
|
167
167
|
- lib/torrent-finder.rb
|
168
168
|
- lib/torrent-finder/adapters.rb
|
169
|
+
- lib/torrent-finder/adapters/dmhy_adapter.rb
|
169
170
|
- lib/torrent-finder/adapters/eztv_adapter.rb
|
170
171
|
- lib/torrent-finder/adapters/nyaa_adapter.rb
|
171
172
|
- lib/torrent-finder/adapters/popgo_adapter.rb
|
172
173
|
- lib/torrent-finder/command.rb
|
173
174
|
- lib/torrent-finder/torrent.rb
|
174
175
|
- lib/torrent-finder/version.rb
|
176
|
+
- spec/adapters/dmhy_adapter_spec.rb
|
175
177
|
- spec/adapters/eztv_adapter_spec.rb
|
176
178
|
- spec/adapters/nyaa_adapter_spec.rb
|
177
179
|
- spec/adapters/popgo_adapter_spec.rb
|
180
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_DmhyAdapter/_list/should_list_first_page_of_torrent.yml
|
181
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_DmhyAdapter/_search/should_search_torrent.yml
|
178
182
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml
|
179
183
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml
|
180
184
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_list/should_list_first_page_of_torrent.yml
|
@@ -208,9 +212,12 @@ signing_key:
|
|
208
212
|
specification_version: 4
|
209
213
|
summary: Extensible command line tool to search torrent.
|
210
214
|
test_files:
|
215
|
+
- spec/adapters/dmhy_adapter_spec.rb
|
211
216
|
- spec/adapters/eztv_adapter_spec.rb
|
212
217
|
- spec/adapters/nyaa_adapter_spec.rb
|
213
218
|
- spec/adapters/popgo_adapter_spec.rb
|
219
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_DmhyAdapter/_list/should_list_first_page_of_torrent.yml
|
220
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_DmhyAdapter/_search/should_search_torrent.yml
|
214
221
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml
|
215
222
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml
|
216
223
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_list/should_list_first_page_of_torrent.yml
|