ruby-tmdb 0.0.19 → 0.0.20

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.
Files changed (5) hide show
  1. data/.gitignore +1 -0
  2. data/README.rdoc +0 -3
  3. data/VERSION +1 -1
  4. data/ruby-tmdb.gemspec +3 -2
  5. metadata +4 -3
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.gem
data/README.rdoc CHANGED
@@ -26,9 +26,6 @@ ruby-tmdb is an ActiveRecord-style API wrapper for {TheMovieDB.org}[http://www.t
26
26
  @movie.posters.first.data
27
27
  # => [binary blob representing JPEG]
28
28
 
29
- @movie.cast.first.bio.movies
30
- # => [<TmdbMovie>,<TmdbMovie>,<TmdbMovie>,<TmdbMovie>]
31
-
32
29
  @actor = TmdbCast.find(:name => "Brad Pitt", :limit => 1)
33
30
  # => <TmdbCast>
34
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.19
1
+ 0.0.20
data/ruby-tmdb.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ruby-tmdb}
8
- s.version = "0.0.19"
8
+ s.version = "0.0.20"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Aaron Gough"]
@@ -17,7 +17,8 @@ Gem::Specification.new do |s|
17
17
  "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
- "MIT-LICENSE",
20
+ ".gitignore",
21
+ "MIT-LICENSE",
21
22
  "README.rdoc",
22
23
  "Rakefile",
23
24
  "VERSION",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-tmdb
3
3
  version: !ruby/object:Gem::Version
4
- hash: 57
4
+ hash: 55
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 19
10
- version: 0.0.19
9
+ - 20
10
+ version: 0.0.20
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aaron Gough
@@ -42,6 +42,7 @@ extra_rdoc_files:
42
42
  - MIT-LICENSE
43
43
  - README.rdoc
44
44
  files:
45
+ - .gitignore
45
46
  - MIT-LICENSE
46
47
  - README.rdoc
47
48
  - Rakefile