twitter_with_auto_pagination 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 70969b66bf420f0f456b60bf2dae86b57cf77174cacfa6907500fabdd05fa10b
4
- data.tar.gz: c098f38ba2640c493157ac7d4c0376647b3bbe41f1d2348c78c6dd4667607080
3
+ metadata.gz: 33f7f18af0b8604e17243e3df54211458a6f7b5a72017ce28c314f0c34ef6fb7
4
+ data.tar.gz: a026857a4bdd2ae8fb844e1eeeb714f54b937548ed472a03aab746ec9bc06af9
5
5
  SHA512:
6
- metadata.gz: 012c90d89169a059f4ea3eb026b38f8cbfb51d31d2baf61395d688ed2fea17ca72adf1e82a189b35d40d19d0a21bcef33fc2c8eb01fff9c733a3fc67a1d57949
7
- data.tar.gz: 36fc45fc9ceb42380a787df093def564c928dcd179338180ff77b1c3f31527a2be6c338a477a9284a5d733b57ef8244f36116d48c713cd747f36003778001f33
6
+ metadata.gz: 8abb120def53b43fce9b45a799168c0e8221de5ed577dc4b115e7ab485b387be847043971a7b0ea44a015f3d9af6c3f2101720d815aec96857b6fe14b198e9fc
7
+ data.tar.gz: '058ed2cfe1ad7d528c6dfccf3346a36e070f1a10b2995ef483ce09d955d3f1b7f3b48b9ea27aab753636798acc0754732c7a0f7f9999477d0dcf8ab36b122cbb'
@@ -14,8 +14,8 @@ module TwitterWithAutoPagination
14
14
  def initialize(*args)
15
15
  options = args.extract_options!
16
16
 
17
- if options['cache_store']
18
- @client = options['cache_store']
17
+ if options['cache_store'] || options[:cache_store]
18
+ @client = options['cache_store'] || options[:cache_store]
19
19
  else
20
20
  path = options['cache_dir'] || options[:cache_dir] || File.join('tmp', 'twitter_cache')
21
21
  ttl = options['cache_ttl'] || options[:cache_ttl] || 1.hour
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
21
21
  spec.required_ruby_version = '>= 2.3'
22
22
  spec.summary = spec.description
23
23
  spec.test_files = Dir.glob('spec/**/*')
24
- spec.version = '0.15.0'
24
+ spec.version = '0.15.1'
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter_with_auto_pagination
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shinohara Teruki