Sha256: 67f433e75af3cf2f0795caf92e60f0fe26c8e8d526c6f685f198cfa9495c2574

Contents?: true

Size: 784 Bytes

Versions: 1

Compression:

Stored size: 784 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omdb/api/version'

Gem::Specification.new do |spec|
  spec.name          = 'omdb-api'
  spec.version       = Omdb::Api::VERSION
  spec.authors       = ['Nick Palaniuk']
  spec.email         = ['npalaniuk@gmail.com']
  spec.summary       = 'Ruby interface for the OMDB API'
  spec.description   = 'A ruby interface for the OMDB API'
  spec.homepage      = 'https://github.com/nikkypx/omdb-api'
  spec.license       = 'MIT'
  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.require_paths = ['lib']
  spec.add_dependency 'httparty'
  spec.add_development_dependency 'bundler'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omdb-api-1.0.0 omdb-api.gemspec