forked from ahmetabdi/themoviedb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththemoviedb.gemspec
52 lines (48 loc) · 1.98 KB
/
themoviedb.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "themoviedb/version"
Gem::Specification.new do |s|
s.name = "themoviedb"
s.version = Tmdb::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ahmet Abdi"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/themoviedb"
s.summary = %q{A Ruby wrapper for the The Movie Database API.}
s.description = %q{Provides a simple, easy to use interface for the Movie Database API.}
s.rubyforge_project = "themoviedb"
s.files = [
"themoviedb.gemspec",
"lib/themoviedb.rb",
"lib/themoviedb/api.rb",
"lib/themoviedb/collection.rb",
"lib/themoviedb/company.rb",
"lib/themoviedb/configuration.rb",
"lib/themoviedb/genre.rb",
"lib/themoviedb/job.rb",
"lib/themoviedb/movie.rb",
"lib/themoviedb/person.rb",
"lib/themoviedb/resource.rb",
"lib/themoviedb/search.rb",
"lib/themoviedb/season.rb",
"lib/themoviedb/episode.rb",
"lib/themoviedb/tv.rb",
"lib/themoviedb/find.rb",
"lib/themoviedb/version.rb"
]
s.test_files = [
"spec/movie_spec.rb",
"spec/tv_spec.rb",
"spec/company_spec.rb",
"spec/person_spec.rb",
"spec/find_spec.rb"
]
s.require_paths = ["lib"]
s.add_runtime_dependency 'httparty'
s.add_runtime_dependency 'hashugar'
s.add_development_dependency 'vcr'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'webmock'
end