forked from 18Months/themoviedb-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
themoviedb-api.gemspec
31 lines (26 loc) · 1.27 KB
/
themoviedb-api.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tmdb/version'
Gem::Specification.new do |s|
s.name = 'themoviedb-api'
s.version = Tmdb::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['18Months']
s.email = ['[email protected]']
s.homepage = 'https://github.com/18Months/themoviedb-api'
s.summary = %q{A simple to use Ruby wrapper for the The Movie Database API.}
s.description = %q{Provides a simple and intuitive interface for the Movie Database API making use of OpenStruct.}
s.rubyforge_project = 'themoviedb-api'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = %w[lib]
s.add_runtime_dependency 'rest-client', '~> 2.0', '>= 2.0'
s.add_development_dependency 'awesome_print', '~> 1.8', '>= 1.8'
s.add_development_dependency 'vcr', '~> 4.0', '>= 4.0'
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3'
s.add_development_dependency 'rspec', '~> 3.7', '>= 3.7'
s.add_development_dependency 'webmock', '~> 3.3', '>= 3.3'
s.add_development_dependency 'coveralls', '~> 0.8', '>= 0.8'
end