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 +8 -0
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/tvdb_party/episode.rb +1 -1
- data/tvdb_party.gemspec +6 -6
- metadata +4 -4
data/README.textile
CHANGED
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@
|
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.
|
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
|
+
0.1.3
|
data/lib/tvdb_party/episode.rb
CHANGED
@@ -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.
|
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-
|
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@
|
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.
|
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.
|
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.
|
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.
|
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-
|
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.
|
33
|
+
version: 0.4.3
|
34
34
|
version:
|
35
35
|
description: Simple Ruby library to talk to thetvdb.com's api
|
36
|
-
email: jon@
|
36
|
+
email: jon@mustacheinc.com
|
37
37
|
executables: []
|
38
38
|
|
39
39
|
extensions: []
|