Sha256: 9c5414a48742b6790d9ea906481967add6a857ef0f9677f707fd28142618940a

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |gem|
  gem.name          = "pager_duty-connection"
  gem.version       = PagerDuty::Connection::VERSION
  gem.authors       = ["Josh Nichols"]
  gem.email         = ["josh@technicalpickles.com"]
  gem.description   = %q{Ruby API wrapper for the PagerDuty REST API}
  gem.summary       = %q{Written with the power of faraday, pager_duty-connection tries to be a simple and usable Ruby API wrapper for the PagerDuty REST API}
  gem.homepage      = "http://github.com/technicalpickles/pager_duty-connection"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_dependency "faraday", "~> 0.8", "< 1.0"
  gem.add_dependency "faraday_middleware", "~> 0.8", "< 1.0"
  gem.add_dependency "activesupport", ">= 3.2", "< 7.0"
  gem.add_dependency "hashie", ">= 1.2"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pager_duty-connection-1.4.0 pager_duty-connection.gemspec
pager_duty-connection-1.3.0 pager_duty-connection.gemspec