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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51fa0a267540c7de0eb03b80b1a4918aecc109e3
4
- data.tar.gz: 63e5103811d626d9847f03b73475a68149287544
3
+ metadata.gz: 15d6f2118588b2124758dc3642306e06a00b9d69
4
+ data.tar.gz: 55813fd196a22de63b674cc9499208e04ee03217
5
5
  SHA512:
6
- metadata.gz: 24e71ec75b2e0a91c17c0c29abe0b780bc457e2c45276e6863fc4b6a201b21601a1f491d79adc1565b019e94520fd30ec446d8dcd661ef79c60c8ed08cdc8805
7
- data.tar.gz: 92449649e758950cac012dca898656e7c64a590be06ae8b0ba7e2b2c3cc7a183ebfe79db64b2c9bdecf5c7914382c368c4cd7fac2cd23910b64781faae1cfe15
6
+ metadata.gz: 8a4af2d7651431930e523409113dac51189184edd9b4e26a969e9f96f6291ec5ca80246a8c13db06362500d596df88d2166a8b2cc9a7030cc77ac841a716abca
7
+ data.tar.gz: a6db57d557c28d24d007df3669ac3fbff4033ef56f09708321ec925de279d96750f1f4eb503a56d2b10d28f011ac051d89a18e284ca88cca4c0676f632080ff3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nicoquery (0.0.1.3)
4
+ nicoquery (0.0.1.4)
5
5
  activesupport (~> 4.0.0)
6
6
  i18n
7
7
  nicoapi
@@ -1,3 +1,3 @@
1
1
  module NicoQuery
2
- VERSION = "0.0.1.3"
2
+ VERSION = "0.0.1.4"
3
3
  end
data/lib/nicoquery.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require "nicoquery/version"
2
+ require "nicoquery/crawler"
2
3
 
3
4
 
4
5
  module NicoQuery
@@ -1,4 +1,4 @@
1
- require "nicoquery/crawler"
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::Crawler.tag_search( tag: "ゆっくり実況プレイ",
10
+ NicoQuery.tag_search( tag: "ゆっくり実況プレイ",
11
11
  sort: :published_at,
12
12
  order: :asc
13
13
  ) do |result|
@@ -1,5 +1,5 @@
1
1
  require "spec_helper"
2
- require "./lib/NicoQuery/parser/tag_search"
2
+ require "./lib/nicoquery/parser/tag_search"
3
3
  require "./spec/parser/fixture"
4
4
 
5
5
 
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.3
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/parser/tag_search_spec.rb
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/parser/tag_search_spec.rb
225
- - spec/parser/spec_helper.rb
223
+ - spec/parser/tag_search_spec.rb
226
224
  - spec/spec_helper.rb
@@ -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