pagerduty 2.1.1 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +5 -5
- data/README.md +3 -3
- data/lib/pagerduty.rb +1 -0
- data/lib/pagerduty/http_transport.rb +0 -1
- data/lib/pagerduty/version.rb +1 -1
- data/pagerduty.gemspec +0 -6
- data/spec/pagerduty/http_transport_spec.rb +0 -1
- data/spec/pagerduty_spec.rb +0 -1
- data/spec/spec_helper.rb +0 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9070bf8e6ce8209a29f334fa3c63e5e73aa0ad928394c40039ba2b59e1c683a
|
4
|
+
data.tar.gz: 77c2c04f582f9835077e6567d8d27173e310719f1fb42f957345282133518520
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a198fd42dfccc52f8284085bd685b919cc8f07944bc9798d59eb1c0a6ab81283b4494fb63d9d00a12c90f33447a26ba8795b773e510d4acbfa09391f04e07356
|
7
|
+
data.tar.gz: 42d1accd8899ec8faae14561e79f22b0f22aa1a32fba893a8e7d9b109bdaee7583ad9d7999f9e06e5804c03dc1fdf76932f8212738e1fba0f74d081061bbbd05
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
[](https://travis-ci.org/envato/pagerduty)
|
7
7
|
|
8
8
|
Provides a lightweight Ruby interface for calling the [PagerDuty
|
9
|
-
|
9
|
+
Events API](https://v2.developer.pagerduty.com/docs/events-api).
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
@@ -48,8 +48,8 @@ incident.resolve
|
|
48
48
|
|
49
49
|
There are a whole bunch of properties you can send to PagerDuty when triggering
|
50
50
|
an incident. See the [PagerDuty
|
51
|
-
documentation](
|
52
|
-
|
51
|
+
documentation](https://v2.developer.pagerduty.com/docs/trigger-events) for the
|
52
|
+
specifics.
|
53
53
|
|
54
54
|
```ruby
|
55
55
|
pagerduty.trigger(
|
data/lib/pagerduty.rb
CHANGED
data/lib/pagerduty/version.rb
CHANGED
data/pagerduty.gemspec
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
lib = File.expand_path("lib", __dir__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require "pagerduty/version"
|
@@ -14,11 +13,6 @@ Gem::Specification.new do |gem|
|
|
14
13
|
gem.homepage = "http://github.com/envato/pagerduty"
|
15
14
|
gem.license = "MIT"
|
16
15
|
|
17
|
-
gem.post_install_message = %(
|
18
|
-
If upgrading to pagerduty 2.0.0 please note the API changes:
|
19
|
-
https://github.com/envato/pagerduty#upgrading-to-version-200
|
20
|
-
)
|
21
|
-
|
22
16
|
gem.files = `git ls-files`.split($/)
|
23
17
|
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
24
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
data/spec/pagerduty_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pagerduty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charlie Somerville
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-09-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -110,8 +110,7 @@ homepage: http://github.com/envato/pagerduty
|
|
110
110
|
licenses:
|
111
111
|
- MIT
|
112
112
|
metadata: {}
|
113
|
-
post_install_message:
|
114
|
-
\ "
|
113
|
+
post_install_message:
|
115
114
|
rdoc_options: []
|
116
115
|
require_paths:
|
117
116
|
- lib
|