Sha256: 1f9c60f20e0ee4606ef31bcf1b3b3114727d7f448a3e9457d292596f2789d827

Contents?: true

Size: 1.16 KB

Versions: 5

Compression:

Stored size: 1.16 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "ahub"
  spec.version       = Ahub::VERSION
  spec.authors       = ["Abel Martin"]
  spec.email         = ["abel.martin@gmail.com"]

  spec.summary       = "A gem to interact with the Answer Hub API"
  spec.description   = "Answer Hub is a great product.  This gem allows you to easily interact with its API"
  spec.homepage      = "https://github.com/abelmartin/ahub"
  spec.license       = "MIT"

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

  spec.add_runtime_dependency "rest-client", "~> 1.8"
  spec.add_runtime_dependency "dotenv", "~> 2.0"

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.3"
  spec.add_development_dependency "pry-byebug", "~> 3.2"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ahub-0.2.0 ahub.gemspec
ahub-0.1.17 ahub.gemspec
ahub-0.1.16 ahub.gemspec
ahub-0.1.15 ahub.gemspec
ahub-0.1.14 ahub.gemspec