forked from technicalpickles/pager_duty-connection
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpager_duty-connection.gemspec
24 lines (21 loc) · 1.09 KB
/
pager_duty-connection.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- 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.12.0"
gem.add_dependency "faraday_middleware", "~> 0.11.0"
gem.add_dependency "activesupport", ">= 3.2", "< 5.0"
gem.add_dependency "hashie", "~> 3.5.0"
end