forked from ahmetabdi/themoviedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
themoviedb.gemspec
26 lines (22 loc) · 899 Bytes
/
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
# -*- 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 = 'https://rubygems.org/gems/themoviedb'
s.summary = 'A Ruby wrapper for the The Movie Database API.'
s.description = 'Provides a simple, easy to use interface for The Movie Database API.'
s.files = Dir['README.md', 'themoviedb.gemspec', 'lib/**/*']
s.test_files = Dir['spec/**/*']
s.require_paths = ['lib']
s.add_runtime_dependency 'httparty'
s.add_development_dependency 'vcr'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'webmock'
end