strike_api 1.0.3 → 1.0.4
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/README.md +29 -33
- data/lib/strike_api/torrent.rb +11 -0
- data/lib/strike_api/version.rb +1 -1
- data/test/fixtures/test_filter_string.yml +255 -0
- data/test/fixtures/test_filter_string_no_filter.yml +252 -0
- data/test/fixtures/test_top.yml +266 -0
- data/test/fixtures/test_top_all_category.yml +335 -0
- data/test/torrent/torrent_test.rb +64 -0
- metadata +10 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: strike_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marshall Ford
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-04-
|
|
12
|
+
date: 2015-04-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -126,6 +126,8 @@ files:
|
|
|
126
126
|
- lib/strike_api/torrent.rb
|
|
127
127
|
- lib/strike_api/version.rb
|
|
128
128
|
- strike_api.gemspec
|
|
129
|
+
- test/fixtures/test_filter_string.yml
|
|
130
|
+
- test/fixtures/test_filter_string_no_filter.yml
|
|
129
131
|
- test/fixtures/test_find_array.yml
|
|
130
132
|
- test/fixtures/test_find_empty.yml
|
|
131
133
|
- test/fixtures/test_find_no_torrents.yml
|
|
@@ -136,6 +138,8 @@ files:
|
|
|
136
138
|
- test/fixtures/test_search_empty.yml
|
|
137
139
|
- test/fixtures/test_search_no_torrents.yml
|
|
138
140
|
- test/fixtures/test_search_subCategory.yml
|
|
141
|
+
- test/fixtures/test_top.yml
|
|
142
|
+
- test/fixtures/test_top_all_category.yml
|
|
139
143
|
- test/test_helper.rb
|
|
140
144
|
- test/torrent/torrent_test.rb
|
|
141
145
|
homepage: https://github.com/marshallford/strike_api
|
|
@@ -163,6 +167,8 @@ signing_key:
|
|
|
163
167
|
specification_version: 4
|
|
164
168
|
summary: Wrapper for the Strike API.
|
|
165
169
|
test_files:
|
|
170
|
+
- test/fixtures/test_filter_string.yml
|
|
171
|
+
- test/fixtures/test_filter_string_no_filter.yml
|
|
166
172
|
- test/fixtures/test_find_array.yml
|
|
167
173
|
- test/fixtures/test_find_empty.yml
|
|
168
174
|
- test/fixtures/test_find_no_torrents.yml
|
|
@@ -173,5 +179,7 @@ test_files:
|
|
|
173
179
|
- test/fixtures/test_search_empty.yml
|
|
174
180
|
- test/fixtures/test_search_no_torrents.yml
|
|
175
181
|
- test/fixtures/test_search_subCategory.yml
|
|
182
|
+
- test/fixtures/test_top.yml
|
|
183
|
+
- test/fixtures/test_top_all_category.yml
|
|
176
184
|
- test/test_helper.rb
|
|
177
185
|
- test/torrent/torrent_test.rb
|