tvdb_party 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -4,6 +4,14 @@ h2. What?
4
4
 
5
5
  TvdbParty is a simple Ruby library to talk to thetvdb.com database.
6
6
 
7
+ h2. Install
8
+
9
+ sudo gem install tvdb_party
10
+
11
+ TvdbParty is hosted on Gemcutter
12
+
13
+ gem install tvdb_party
14
+
7
15
  h2. How?
8
16
 
9
17
  set up the client
data/Rakefile CHANGED
@@ -7,11 +7,11 @@ begin
7
7
  gem.name = "tvdb_party"
8
8
  gem.summary = %Q{Simple Ruby library to talk to thetvdb.com's api}
9
9
  gem.description = %Q{Simple Ruby library to talk to thetvdb.com's api}
10
- gem.email = "jon@jonsthoughtsoneverything.com"
10
+ gem.email = "jon@mustacheinc.com"
11
11
  gem.homepage = "http://github.com/maddox/tvdb_party"
12
12
  gem.authors = ["Jon Maddox"]
13
13
  gem.add_development_dependency "thoughtbot-shoulda"
14
- gem.add_dependency('httparty', '>= 0.4.4')
14
+ gem.add_dependency('httparty', '>= 0.4.3')
15
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
16
  end
17
17
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.3
@@ -10,7 +10,7 @@ module TvdbParty
10
10
  @overview = options["Overview"]
11
11
  @air_date = Date.parse(options["FirstAired"]) if options["FirstAired"]
12
12
  @thumb = "http://thetvdb.com/banners/" + options["filename"] if options["filename"].to_s != ""
13
- @guest_stars = options["GuestStars"][1..-1].split("|")
13
+ @guest_stars = options["GuestStars"][1..-1].split("|") if options["GuestStars"]
14
14
  @director = options["Director"]
15
15
  @writer = options["Writer"]
16
16
  end
data/tvdb_party.gemspec CHANGED
@@ -5,13 +5,13 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{tvdb_party}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jon Maddox"]
12
- s.date = %q{2009-09-29}
12
+ s.date = %q{2009-10-08}
13
13
  s.description = %q{Simple Ruby library to talk to thetvdb.com's api}
14
- s.email = %q{jon@jonsthoughtsoneverything.com}
14
+ s.email = %q{jon@mustacheinc.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
17
  "README.textile"
@@ -48,13 +48,13 @@ Gem::Specification.new do |s|
48
48
 
49
49
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
50
  s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
51
- s.add_runtime_dependency(%q<httparty>, [">= 0.4.4"])
51
+ s.add_runtime_dependency(%q<httparty>, [">= 0.4.3"])
52
52
  else
53
53
  s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
54
- s.add_dependency(%q<httparty>, [">= 0.4.4"])
54
+ s.add_dependency(%q<httparty>, [">= 0.4.3"])
55
55
  end
56
56
  else
57
57
  s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
58
- s.add_dependency(%q<httparty>, [">= 0.4.4"])
58
+ s.add_dependency(%q<httparty>, [">= 0.4.3"])
59
59
  end
60
60
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tvdb_party
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Maddox
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-29 00:00:00 -04:00
12
+ date: 2009-10-08 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -30,10 +30,10 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.4.4
33
+ version: 0.4.3
34
34
  version:
35
35
  description: Simple Ruby library to talk to thetvdb.com's api
36
- email: jon@jonsthoughtsoneverything.com
36
+ email: jon@mustacheinc.com
37
37
  executables: []
38
38
 
39
39
  extensions: []