nicoquery 0.0.1.3 → 0.0.1.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/Gemfile.lock +1 -1
- data/lib/nicoquery/version.rb +1 -1
- data/lib/nicoquery.rb +1 -0
- data/spec/crawler/tag_search_spec.rb +2 -2
- data/spec/parser/{parser/tag_search_spec.rb → tag_search_spec.rb} +1 -1
- metadata +3 -5
- data/spec/parser/spec_helper.rb +0 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15d6f2118588b2124758dc3642306e06a00b9d69
|
|
4
|
+
data.tar.gz: 55813fd196a22de63b674cc9499208e04ee03217
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a4af2d7651431930e523409113dac51189184edd9b4e26a969e9f96f6291ec5ca80246a8c13db06362500d596df88d2166a8b2cc9a7030cc77ac841a716abca
|
|
7
|
+
data.tar.gz: a6db57d557c28d24d007df3669ac3fbff4033ef56f09708321ec925de279d96750f1f4eb503a56d2b10d28f011ac051d89a18e284ca88cca4c0676f632080ff3
|
data/Gemfile.lock
CHANGED
data/lib/nicoquery/version.rb
CHANGED
data/lib/nicoquery.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require "nicoquery
|
|
1
|
+
require "nicoquery"
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
describe "NicoQuery::Crawler" do
|
|
@@ -7,7 +7,7 @@ describe "NicoQuery::Crawler" do
|
|
|
7
7
|
counter = 0
|
|
8
8
|
@acquired_movies = []
|
|
9
9
|
|
|
10
|
-
NicoQuery
|
|
10
|
+
NicoQuery.tag_search( tag: "ゆっくり実況プレイ",
|
|
11
11
|
sort: :published_at,
|
|
12
12
|
order: :asc
|
|
13
13
|
) do |result|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nicoquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.1.
|
|
4
|
+
version: 0.0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masami Yonehara
|
|
@@ -190,8 +190,7 @@ files:
|
|
|
190
190
|
- spec/crawler/spec_helper.rb
|
|
191
191
|
- spec/crawler/tag_search_spec.rb
|
|
192
192
|
- spec/parser/fixture.rb
|
|
193
|
-
- spec/parser/
|
|
194
|
-
- spec/parser/spec_helper.rb
|
|
193
|
+
- spec/parser/tag_search_spec.rb
|
|
195
194
|
- spec/spec_helper.rb
|
|
196
195
|
homepage: ''
|
|
197
196
|
licenses:
|
|
@@ -221,6 +220,5 @@ test_files:
|
|
|
221
220
|
- spec/crawler/spec_helper.rb
|
|
222
221
|
- spec/crawler/tag_search_spec.rb
|
|
223
222
|
- spec/parser/fixture.rb
|
|
224
|
-
- spec/parser/
|
|
225
|
-
- spec/parser/spec_helper.rb
|
|
223
|
+
- spec/parser/tag_search_spec.rb
|
|
226
224
|
- spec/spec_helper.rb
|
data/spec/parser/spec_helper.rb
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# This file was generated by the `rspec --init` command. Conventionally, all
|
|
2
|
-
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
3
|
-
# Require this file using `require "spec_helper"` to ensure that it is only
|
|
4
|
-
# loaded once.
|
|
5
|
-
#
|
|
6
|
-
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
7
|
-
RSpec.configure do |config|
|
|
8
|
-
config.treat_symbols_as_metadata_keys_with_true_values = true
|
|
9
|
-
config.run_all_when_everything_filtered = true
|
|
10
|
-
config.filter_run :focus
|
|
11
|
-
|
|
12
|
-
# Run specs in random order to surface order dependencies. If you find an
|
|
13
|
-
# order dependency and want to debug it, you can fix the order by providing
|
|
14
|
-
# the seed, which is printed after each run.
|
|
15
|
-
# --seed 1234
|
|
16
|
-
config.order = 'random'
|
|
17
|
-
end
|