Sha256: 74f79f2407504eeeb8f8ebe96190d8b199ad005a880b91e2eebf8e0fb8cc2d46

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "pagerduty/version"

Gem::Specification.new do |gem|
  gem.name          = "pagerduty"
  gem.version       = Pagerduty::VERSION
  gem.authors       = ["Charlie Somerville", "Orien Madgwick"]
  gem.email         = ["charlie@charliesomerville.com", "_@orien.io"]
  gem.description   =
    "Provides a lightweight interface for calling the PagerDuty Integration API"
  gem.summary       = "Pagerduty Integration API client library"
  gem.homepage      = "http://github.com/envato/pagerduty"
  gem.license       = "MIT"

  gem.post_install_message = %(
If upgrading to pagerduty 2.0.0 please note the API changes:
https://github.com/envato/pagerduty#upgrading-to-version-200
  )

  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_runtime_dependency "json", ">= 1.7.7"
  gem.add_development_dependency "bundler"
  gem.add_development_dependency "rake"
  gem.add_development_dependency "rspec-given"
  gem.add_development_dependency "rubocop"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pagerduty-2.1.1 pagerduty.gemspec