vishalzambre/ecwid_api

View on GitHub
ecwid_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 'ecwid_api/version'

Gem::Specification.new do |spec|
  spec.name          = "ecwid_api"
  spec.version       = EcwidApi::VERSION
  spec.authors       = ["David Biehl", "Vishal Zambre"]
  spec.email         = ["v.zambre@gmail.com"]
  spec.summary       = %q{A client for the Ecwid REST API}
  spec.description   = %q{A client for the Ecwid REST API in Ruby}
  spec.homepage      = "https://github.com/vishalzambre/ecwid_api"
  spec.license       = "MIT"
  spec.post_install_message = "Thanks for installing!"

  spec.files         = `git ls-files -z`.split("\x0")
  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_development_dependency "bundler", "~> 2.1.4"
  spec.add_development_dependency "rake", "~> 0"
  spec.add_development_dependency "rspec", "~> 3.5", ">= 3.5"

  spec.add_dependency "faraday", "~> 1.0.0"
  spec.add_dependency "faraday_middleware", "~> 1.0.0"
end