forked from aarongough/ruby-tmdb
-
Notifications
You must be signed in to change notification settings - Fork 15
/
ruby-tmdb3.gemspec
80 lines (75 loc) · 2.7 KB
/
ruby-tmdb3.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ruby-tmdb3"
s.version = "0.3.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Irio Irineu Musskopf Junior", "Aaron Gough"]
s.date = "2012-09-15"
s.description = "An ActiveRecord-style API wrapper for TheMovieDB.org"
s.email = "[email protected]"
s.extra_rdoc_files = [
"MIT-LICENSE",
"README.rdoc"
]
s.files = [
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/ruby-tmdb3.rb",
"lib/ruby-tmdb3/tmdb.rb",
"lib/ruby-tmdb3/tmdb_cast.rb",
"lib/ruby-tmdb3/tmdb_movie.rb",
"ruby-tmdb3.gemspec",
"test/fixtures/blank_result.txt",
"test/fixtures/example_com.txt",
"test/fixtures/image.jpg",
"test/fixtures/incorrect_api_url.txt",
"test/fixtures/movie_casts.txt",
"test/fixtures/movie_get_info.txt",
"test/fixtures/movie_imdb_lookup.txt",
"test/fixtures/movie_posters.txt",
"test/fixtures/movie_releases.txt",
"test/fixtures/movie_search.txt",
"test/fixtures/person_get_info.txt",
"test/fixtures/person_search.txt",
"test/setup/setup_api_key.rb",
"test/setup/test_unit_extensions.rb",
"test/setup/url_mocks.rb",
"test/test_helper.rb",
"test/unit/test_direct_require.rb",
"test/unit/tmdb_cast_test.rb",
"test/unit/tmdb_movie_test.rb",
"test/unit/tmdb_test.rb"
]
s.homepage = "https://github.com/Irio/ruby-tmdb"
s.rdoc_options = ["--line-numbers", "--inline-source"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "An ActiveRecord-style API wrapper for TheMovieDB.org"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<deepopenstruct>, [">= 0.1.2"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_runtime_dependency(%q<addressable>, [">= 0"])
s.add_development_dependency(%q<webmock>, [">= 0"])
s.add_development_dependency(%q<mocha>, [">= 0.13.0"])
else
s.add_dependency(%q<deepopenstruct>, [">= 0.1.2"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<addressable>, [">= 0"])
s.add_dependency(%q<webmock>, [">= 0"])
s.add_dependency(%q<mocha>, [">= 0.13.0"])
end
else
s.add_dependency(%q<deepopenstruct>, [">= 0.1.2"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<addressable>, [">= 0"])
s.add_dependency(%q<webmock>, [">= 0"])
s.add_dependency(%q<mocha>, [">= 0.13.0"])
end
end