andrielfn/tmdb-api

View on GitHub
tmdb-api.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tmdb-api/version'

Gem::Specification.new do |spec|
  spec.name          = "tmdb-api"
  spec.version       = TMDb::VERSION
  spec.authors       = ["Andriel Nuernberg"]
  spec.email         = ["andrielfn@gmail.com"]
  spec.summary       = "The Movie Database API v3"
  spec.description = <<-EOF
    This gem is a Ruby wrapper of the The Movie Database API v3.
    The original API documentation is available at
    http://docs.themoviedb.apiary.io.
  EOF
  spec.homepage      = "https://github.com/andrielfn/tmdb-api"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_dependency "httparty", "~> 0.13", ">= 0.13.0"
  spec.add_dependency "activesupport", "~> 4.2", ">= 4.1.8"

  spec.add_development_dependency "bundler", "~> 1.5", ">= 1.5"
  spec.add_development_dependency "rake", "~> 10.4", ">= 10.4.2"
  spec.add_development_dependency "rspec", "~> 3.1", ">= 3.1.0"
  spec.add_development_dependency "webmock", "~> 1.20", ">= 1.20.4"
  spec.add_development_dependency "pry", "~> 0.9", ">= 0.9.12.6"
end