hooloo 0.3.0 → 0.3.1

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: 1615bf1fea0dc7d8018501e31c3c7a1a283c0e22
4
- data.tar.gz: 3c0e8b7ccce9c26f92567ffb82e2a0e0f5d8616d
3
+ metadata.gz: 6f4aaebd7ca3981363c320e3cb19769b9519d2a8
4
+ data.tar.gz: 4c603818c898840178d08c031d5a6cfa716504e5
5
5
  SHA512:
6
- metadata.gz: d907d13bb38d54c27da515379cb891dcc63f197f2c05816441b3785ebbad93867cf2883f9846e18b3dfb629c23ce35ecfb7b2a9c97d1c1cb7ece0c0e3e54ec2c
7
- data.tar.gz: 463a835292e78cb51ec5ac52475c848c8e75749cff28b2bf2aef56f5d6244c0f113dfb0f966a510e0d8f7c567301f9bf1101b95201615f9cc4c864811547ac65
6
+ metadata.gz: b3dfe8aa170e0c04453ff8a173be0031136cc9a7f0104db56444d297ab4f69eace237f64b63f325636a062e416d809b4ac6a12fad777de21a7dd7120668ef654
7
+ data.tar.gz: bb7b0f9d36d899714e79a1f74b9f67a85c70272872cbe500ad3bc35540bc7043336e7a60cada428f5cb6fde2340b56f6d00f1323fc5932ab412b93789efc34ac
@@ -15,7 +15,7 @@ class Hooloo::Genre < Hooloo::MozartHash
15
15
  Hooloo.paginated_request('shows', {
16
16
  genre: canonical_name,
17
17
  sort: 'release_with_popularity'
18
- }.merge(args)) { |g, x| g << Hooloo::Show.new(x['show']) }
18
+ }.merge(args), 100) { |g, x| g << Hooloo::Show.new(x['show']) }
19
19
  end
20
20
  # List all genres known to Hulu
21
21
  #
@@ -2,7 +2,7 @@ class Hooloo::Show < Hooloo::MozartHash
2
2
  def self.popular_today(args={})
3
3
  Hooloo.paginated_request('shows', {
4
4
  sort: 'popular_today'
5
- }.merge(args)) { |g, x| g << Hooloo::Show.new(x['show']) }
5
+ }.merge(args), 30) { |g, x| g << Hooloo::Show.new(x['show']) }
6
6
  end
7
7
  def initialize(id)
8
8
  super
@@ -15,7 +15,7 @@ class Hooloo::Show < Hooloo::MozartHash
15
15
  def videos(season=1, args={})
16
16
  Hooloo.paginated_request("shows/#{id}/episodes", {
17
17
  season_number: season
18
- }.merge(args)) { |g, x| g << Hooloo::Video.new(x['video']) }
18
+ }.merge(args), 30) { |g, x| g << Hooloo::Video.new(x['video']) }
19
19
  end
20
20
  bool :embed_permitted, :has_captions
21
21
  date :cache_time
@@ -1,3 +1,3 @@
1
1
  class Hooloo
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
@@ -11,10 +11,10 @@ describe Hooloo::Genre do
11
11
  describe 'Shows List' do
12
12
  let(:genre) { Hooloo::Genre.new 'anime' }
13
13
  it 'should return multiple shows' do
14
- genre.shows.count.must_be :>, 0
14
+ genre.shows.first(50).count.must_be :>, 0
15
15
  end
16
16
  it 'should convert shows to Show objects' do
17
- genre.shows.each { |x| x.must_be_instance_of Hooloo::Show }
17
+ genre.shows.first(5).each { |x| x.must_be_instance_of Hooloo::Show }
18
18
  end
19
19
  end
20
20
  end
@@ -5,7 +5,7 @@ describe Hooloo::Show do
5
5
  describe 'Popular Today' do
6
6
  let(:shows) { Hooloo::Show.popular_today }
7
7
  it 'should retrieve popular_today' do
8
- shows.count.must_equal 10
8
+ shows.first(10).count.must_equal 10
9
9
  end
10
10
  end
11
11
  describe 'Loading' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hooloo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Lejeck