github_webhook 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -5
- data/Gemfile.lock +3 -3
- data/README.md +1 -1
- data/lib/github_webhook/processor.rb +1 -1
- data/lib/github_webhook/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41abd3601fa42493b980a1941656c3abb8ec126a
|
4
|
+
data.tar.gz: aee0d5e1c6159999e9282514b35899e1173cec20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5c3dde0741dbdbacb5e682ecef8345003d3fe1dc2d34ccb04de6f4ea9e7b1f9a100fbf94592d881947e3e5fd616961d6e115c070f176064f79bcb54a7d26d62
|
7
|
+
data.tar.gz: c9a1e0371d59678f7d57a6e363c59475522dcc97e3631faaa0b68e11c14dee7a2de02699c0be390195a14787ec492eb9a08ceaf7cc405429903ebe1959820e87
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
github_webhook (1.0.
|
4
|
+
github_webhook (1.0.1)
|
5
5
|
activesupport (>= 4)
|
6
6
|
rack (>= 1.3)
|
7
7
|
|
@@ -20,7 +20,7 @@ GEM
|
|
20
20
|
docile (1.1.5)
|
21
21
|
i18n (0.7.0)
|
22
22
|
json (1.8.3)
|
23
|
-
minitest (5.9.
|
23
|
+
minitest (5.9.1)
|
24
24
|
rack (2.0.1)
|
25
25
|
rake (10.3.1)
|
26
26
|
rspec (2.14.1)
|
@@ -51,4 +51,4 @@ DEPENDENCIES
|
|
51
51
|
rspec (~> 2.14)
|
52
52
|
|
53
53
|
BUNDLED WITH
|
54
|
-
1.
|
54
|
+
1.13.2
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ module GithubWebhook::Processor
|
|
11
11
|
class UnsupportedGithubEventError < StandardError; end
|
12
12
|
class UnsupportedContentTypeError < StandardError; end
|
13
13
|
|
14
|
-
GITHUB_EVENTS_WHITELIST = %w(ping commit_comment create delete deployment deployment_status download follow fork fork_apply gist gollum issue_comment issues member membership page_build public pull_request pull_request_review_comment push release repository status team_add watch)
|
14
|
+
GITHUB_EVENTS_WHITELIST = %w(ping commit_comment create delete deployment deployment_status download follow fork fork_apply gist gollum issue_comment issues member membership page_build public pull_request pull_request_review pull_request_review_comment push release repository status team_add watch)
|
15
15
|
|
16
16
|
def create
|
17
17
|
if self.respond_to? event_method
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_webhook
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastien Saunier
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|