tvdb_party 0.8.1 → 0.8.3

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
  SHA1:
3
- metadata.gz: 9a4f1f41d21093d84a729c6b483fcadd3318ead5
4
- data.tar.gz: cebafe8a86384dd515a8fb94939e872147ead8f6
3
+ metadata.gz: edf84cb1fb11a9b32d176c8a5b5cef12453ce87f
4
+ data.tar.gz: 630b2cd5afb53223179d6f1a0586bb0a00e7a6e5
5
5
  SHA512:
6
- metadata.gz: 7e025690623c1da3d2dc1414ba2ea4abec7870c6f8ed4033dca5f77ba7d193e284d5eecdad22ea4773b427db2aa9480ca78952e386ab8a777fb77b70050a6efc
7
- data.tar.gz: 482bbc6219fb50e918956fd6006b9d49ee86e297866fc6b7a3610180906f78e5dbd4c9b0259e3018b345d7305e0b811d196145d47db36f6631134258daee6825
6
+ metadata.gz: 4a78084fd180bc55e8301ece0eb5a85c6b33b74ae13456a7b377e7fab38775253e6618968c5cac71ef3b95aabd9e0610197abc99dfa22662a9e891915b3bd217
7
+ data.tar.gz: 1fabdca6149fb688d16bc919545957a2d4a725c3cfed8509327a8b4589946210529dcd9a92fdcf57e3ca67636bd8c1e158b9b52c66c4c4ab05fe0e4e8e41bb1c
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.1
1
+ 0.8.3
@@ -1,8 +1,8 @@
1
1
  module TvdbParty
2
2
  class Episode
3
3
  attr_reader :client
4
- attr_accessor :id, :season_number, :number, :name, :overview, :air_date, :thumb, :guest_stars, :director, :writer, :rating, :rating_count
5
-
4
+ attr_accessor :id, :series_id, :season_number, :number, :name, :overview, :air_date, :thumb, :guest_stars, :director, :writer, :rating, :rating_count
5
+
6
6
  def initialize(client, options={})
7
7
  @client = client
8
8
  @id = options["id"]
@@ -33,15 +33,15 @@ module TvdbParty
33
33
  @rating_count = 0
34
34
  end
35
35
 
36
- begin
36
+ begin
37
37
  @air_date = Date.parse(options["FirstAired"])
38
38
  rescue
39
39
  puts 'invalid date'
40
40
  end
41
41
  end
42
-
42
+
43
43
  def series
44
44
  client.get_series_by_id(@series_id)
45
45
  end
46
46
  end
47
- end
47
+ end
data/tvdb_party.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: tvdb_party 0.8.1 ruby lib
5
+ # stub: tvdb_party 0.8.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "tvdb_party"
9
- s.version = "0.8.1"
9
+ s.version = "0.8.3"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Jon Maddox"]
14
- s.date = "2015-01-13"
14
+ s.date = "2017-08-03"
15
15
  s.description = "Simple Ruby library to talk to thetvdb.com's api"
16
16
  s.email = "jon@mustacheinc.com"
17
17
  s.extra_rdoc_files = [
@@ -36,7 +36,7 @@ Gem::Specification.new do |s|
36
36
  "tvdb_party.gemspec"
37
37
  ]
38
38
  s.homepage = "http://github.com/maddox/tvdb_party"
39
- s.rubygems_version = "2.2.2"
39
+ s.rubygems_version = "2.5.1"
40
40
  s.summary = "Simple Ruby library to talk to thetvdb.com's api"
41
41
 
42
42
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tvdb_party
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Maddox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-13 00:00:00.000000000 Z
11
+ date: 2017-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thoughtbot-shoulda
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  version: '0'
81
81
  requirements: []
82
82
  rubyforge_project:
83
- rubygems_version: 2.2.2
83
+ rubygems_version: 2.5.1
84
84
  signing_key:
85
85
  specification_version: 4
86
86
  summary: Simple Ruby library to talk to thetvdb.com's api