Sha256: 45c814356407cca6241120168542fe12d3b4d82d988775d80a03cbf15eb416b6

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "xporter_on_demand/version"

Gem::Specification.new do |spec|
  spec.name          = "xporter_on_demand"
  spec.version       = XporterOnDemand::VERSION
  spec.authors       = ["Jordan Green"]
  spec.email         = ["jordan.green@meritec.co.uk"]

  spec.summary       = %q{Ruby client for the Xporter on Demand API.}
  spec.homepage      = "https://github.com/meritec/xporter_on_demand"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.5.0"

  spec.add_runtime_dependency 'httpi','>= 2.4.2'
  # Gotta use httpclient cos net_http don't like the __foo__ JSON keys
  spec.add_runtime_dependency 'httpclient', '~> 2.8.3', '>= 2.8.3'
  spec.add_runtime_dependency 'activesupport', '>= 4'
  spec.add_runtime_dependency 'activemodel', '>= 4'
  spec.add_development_dependency "bundler", "~> 1.15"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xporter_on_demand-0.2.4 xporter_on_demand.gemspec
xporter_on_demand-0.2.3 xporter_on_demand.gemspec
xporter_on_demand-0.2.2 xporter_on_demand.gemspec