Sha256: cf3d66295bdbf9afc1366b38d5a814639827d953712ee9922a4f9b0d161db901
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 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.6" gem.add_dependency "faraday_middleware", "~> 0.9.0" gem.add_dependency "activesupport", "~> 3.2" gem.add_dependency "hashie", "~> 1.2" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pager_duty-connection-0.0.3 | pager_duty-connection.gemspec |
pager_duty-connection-0.0.2 | pager_duty-connection.gemspec |
pager_duty-connection-0.0.1 | pager_duty-connection.gemspec |