Sha256: 904b700531ef51c550beed2646d34907815866a11dd77c460a93d87603e94188
Contents?: true
Size: 889 Bytes
Versions: 1
Compression:
Stored size: 889 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 = '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 'activesupport', '~> 4.2.10' spec.add_dependency 'dry-struct', '~> 1.3' spec.add_dependency 'httparty', '~> 0.15' spec.add_development_dependency 'bundler' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omdb-api-2.0.0 | omdb-api.gemspec |