torrent-finder 0.1.1 → 0.2.0
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/torrent-finder/adapters/nyaa_adapter.rb +38 -0
- data/lib/torrent-finder/command.rb +14 -3
- data/lib/torrent-finder/version.rb +1 -1
- data/spec/adapters/eztv_adapter_spec.rb +2 -2
- data/spec/adapters/nyaa_adapter_spec.rb +28 -0
- data/spec/adapters/popgo_adapter_spec.rb +2 -2
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_list/should_list_first_page_of_torrent.yml +2244 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_search/should_search_torrent.yml +895 -0
- metadata +10 -3
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.2.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:
|
11
|
+
date: 2015-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -167,14 +167,18 @@ files:
|
|
167
167
|
- lib/torrent-finder.rb
|
168
168
|
- lib/torrent-finder/adapters.rb
|
169
169
|
- lib/torrent-finder/adapters/eztv_adapter.rb
|
170
|
+
- lib/torrent-finder/adapters/nyaa_adapter.rb
|
170
171
|
- lib/torrent-finder/adapters/popgo_adapter.rb
|
171
172
|
- lib/torrent-finder/command.rb
|
172
173
|
- lib/torrent-finder/torrent.rb
|
173
174
|
- lib/torrent-finder/version.rb
|
174
175
|
- spec/adapters/eztv_adapter_spec.rb
|
176
|
+
- spec/adapters/nyaa_adapter_spec.rb
|
175
177
|
- spec/adapters/popgo_adapter_spec.rb
|
176
178
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml
|
177
179
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml
|
180
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_list/should_list_first_page_of_torrent.yml
|
181
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_search/should_search_torrent.yml
|
178
182
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list/should_list_first_page_of_torrent.yml
|
179
183
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search/should_search_torrent.yml
|
180
184
|
- spec/spec_helper.rb
|
@@ -199,15 +203,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
199
203
|
version: '0'
|
200
204
|
requirements: []
|
201
205
|
rubyforge_project:
|
202
|
-
rubygems_version: 2.
|
206
|
+
rubygems_version: 2.4.5
|
203
207
|
signing_key:
|
204
208
|
specification_version: 4
|
205
209
|
summary: Extensible command line tool to search torrent.
|
206
210
|
test_files:
|
207
211
|
- spec/adapters/eztv_adapter_spec.rb
|
212
|
+
- spec/adapters/nyaa_adapter_spec.rb
|
208
213
|
- spec/adapters/popgo_adapter_spec.rb
|
209
214
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml
|
210
215
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml
|
216
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_list/should_list_first_page_of_torrent.yml
|
217
|
+
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_NyaaAdapter/_search/should_search_torrent.yml
|
211
218
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list/should_list_first_page_of_torrent.yml
|
212
219
|
- spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search/should_search_torrent.yml
|
213
220
|
- spec/spec_helper.rb
|