Sha256: ebc465e9ab043d3b3acadc2429781412e4771a0cdcd2875e5473eb2fe021c6a3

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "whiplash-app"
  spec.version       = Whiplash::App::VERSION
  spec.authors       = ["Don Sullivan, Mark Dickson"]
  spec.email         = ["developers@getwhiplash.com"]

  spec.summary       = "This gem provides connectivity to the Whiplash API for authentication and REST requests."
  spec.description   = "This gem provides connectivity to the Whiplash API for authentication and REST requests."
  spec.homepage      = "https://github.com/whiplashmerch/whiplash-app"

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

  spec.add_dependency "oauth2", "~> 1.2"
  spec.add_dependency "faraday", "~> 2.0"
  spec.add_dependency "moneta", "~> 1.0" # Updated to a more recent version if possible

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec", "~> 3.10"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
whiplash-app-0.3.8 whiplash-app.gemspec
whiplash-app-0.3.7 whiplash-app.gemspec
whiplash-app-0.3.6 whiplash-app.gemspec