-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpager_duty-connection.gemspec
More file actions
23 lines (19 loc) · 962 Bytes
/
Copy pathpager_duty-connection.gemspec
File metadata and controls
23 lines (19 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 = "Ruby API wrapper for the PagerDuty REST API"
gem.summary = "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.require_paths = ["lib"]
gem.add_dependency "faraday", ">= 1.10", "< 3"
gem.add_dependency "activesupport", ">= 3.2", "< 9.0"
gem.add_dependency "hashie", ">= 1.2"
gem.add_development_dependency "rake"
end