tvdb_party_v2 0.1.0 → 0.1.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: f07d59956d9fe030bbeb2d96e0091da4f8f1486f
4
- data.tar.gz: c545c672907eaaaf37e288ad0db6cb2cd11c6eb3
3
+ metadata.gz: f44d10e0f665845886f31e77ddd0638501160d7c
4
+ data.tar.gz: 2bb4dd07048b3648e1d348193978b68c47bc44b3
5
5
  SHA512:
6
- metadata.gz: 399d19db077513b2c670bf9fff1da0159853cacef1217058d03e9fea94e86aff14f9276d97a7341e58bb6778176e4e41e4f2b32cea1f753db21e782a6c24f2d4
7
- data.tar.gz: 53773f41fe47a9c156bcd56aef532486da6782af3f80087adbe95a3f4d50b270a5bd6ff41f548a95d9235acdecfc0ce412703905947b850df639d272c0933319
6
+ metadata.gz: d8ada7b6d69bc5f0ba84f102a9c888c86b4ebf29c7d68b0ca70ab034fdb987b87a99a505347d70d76dcebee17378162f46176a301546cc385094ecbc51d19422
7
+ data.tar.gz: b999e674d06864eaee4aea862b36da199e655044a45fa6a0e2f846961b11a3865b1e0363359967d2ac81a9fa7f5089454333001ffbc810d62b1cd9255828848c
data/README.md CHANGED
@@ -37,7 +37,7 @@ r = @thetvdb.search("Homeland")
37
37
  puts homeland = @thetvdb.get_series_by_id(r.first["id"])
38
38
 
39
39
  # get episode
40
- puts s01e01 = homeland.episode(1,1)
40
+ puts s01e01 = homeland.get_episode(1,1)
41
41
 
42
42
  #get series fanart – pass in your language
43
43
  puts homeland.fanart.first.url
@@ -12,7 +12,7 @@ module TvdbPartyV2
12
12
  @overview = options["overview"]
13
13
  @network = options["network"]
14
14
  @runtime = options["runtime"]
15
- @air_time = options['airstime'] if options['airstime']
15
+ @air_time = options['airstime'] if options['airsTime']
16
16
  @imdb_id = options["imdbId"]
17
17
  @status = options["status"] if options["status"]
18
18
  @airs_dayofweek = options["airsDayOfWeek"]
@@ -1,3 +1,3 @@
1
1
  module TvdbPartyV2
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tvdb_party_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Pan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-03 00:00:00.000000000 Z
11
+ date: 2018-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.6.14
87
+ rubygems_version: 2.6.14.1
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: Simple Ruby library to talk to thetvdb.com's v2 API.