github_webhook 1.0.2 → 1.0.3
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/Gemfile.lock +7 -7
- data/README.md +1 -1
- data/lib/github_webhook/processor.rb +1 -1
- data/lib/github_webhook/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 971cc5e4ac1f04fe8067b12d565572750bde24da
|
|
4
|
+
data.tar.gz: b215b4c107fa6b9e9b7436a0152ded65632135a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34b828dc663da4d04179bd51fcf0cfde7ff250149a006b6dfac52a31f4aa79b798f2005f17b44704c97d0afcef17fabb2c9ae99ac02b39f37bb6cff5a1748c8a
|
|
7
|
+
data.tar.gz: 6b129f77c6c5a30429435903002565393dc6ccca3ee083cae5fad64ede7d6fe5b851dba177b4a141fba6047bc8b0dc38a3b1fb05372392df885bc897d9f4bf47
|
data/Gemfile.lock
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
github_webhook (1.0.
|
|
4
|
+
github_webhook (1.0.3)
|
|
5
5
|
activesupport (>= 4)
|
|
6
6
|
rack (>= 1.3)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (5.0.
|
|
11
|
+
activesupport (5.0.2)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (~> 0.7)
|
|
14
14
|
minitest (~> 5.1)
|
|
15
15
|
tzinfo (~> 1.1)
|
|
16
16
|
codeclimate-test-reporter (0.4.8)
|
|
17
17
|
simplecov (>= 0.7.1, < 1.0.0)
|
|
18
|
-
concurrent-ruby (1.0.
|
|
18
|
+
concurrent-ruby (1.0.5)
|
|
19
19
|
diff-lcs (1.2.5)
|
|
20
20
|
docile (1.1.5)
|
|
21
|
-
i18n (0.
|
|
21
|
+
i18n (0.8.1)
|
|
22
22
|
json (1.8.3)
|
|
23
|
-
minitest (5.
|
|
23
|
+
minitest (5.10.1)
|
|
24
24
|
rack (2.0.1)
|
|
25
25
|
rake (10.3.1)
|
|
26
26
|
rspec (2.14.1)
|
|
@@ -36,7 +36,7 @@ GEM
|
|
|
36
36
|
json (~> 1.8)
|
|
37
37
|
simplecov-html (~> 0.10.0)
|
|
38
38
|
simplecov-html (0.10.0)
|
|
39
|
-
thread_safe (0.3.
|
|
39
|
+
thread_safe (0.3.6)
|
|
40
40
|
tzinfo (1.2.2)
|
|
41
41
|
thread_safe (~> 0.1)
|
|
42
42
|
|
|
@@ -51,4 +51,4 @@ DEPENDENCIES
|
|
|
51
51
|
rspec (~> 2.14)
|
|
52
52
|
|
|
53
53
|
BUNDLED WITH
|
|
54
|
-
1.
|
|
54
|
+
1.14.6
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ module GithubWebhook::Processor
|
|
|
20
20
|
# }
|
|
21
21
|
# });
|
|
22
22
|
# console.log(events);
|
|
23
|
-
GITHUB_EVENTS_WHITELIST = %w(ping commit_comment create delete deployment deployment_status download follow fork fork_apply gist gollum issue_comment issues label member membership milestone page_build public pull_request pull_request_review pull_request_review_comment push release repository status team_add watch)
|
|
23
|
+
GITHUB_EVENTS_WHITELIST = %w(ping commit_comment create delete deployment deployment_status download follow fork fork_apply gist gollum issue_comment issues label member membership milestone organization org_block page_build project_card project_column project public pull_request pull_request_review pull_request_review_comment push release repository status team team_add watch)
|
|
24
24
|
|
|
25
25
|
def create
|
|
26
26
|
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastien Saunier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|
|
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
134
|
version: '0'
|
|
135
135
|
requirements: []
|
|
136
136
|
rubyforge_project:
|
|
137
|
-
rubygems_version: 2.
|
|
137
|
+
rubygems_version: 2.5.2
|
|
138
138
|
signing_key:
|
|
139
139
|
specification_version: 4
|
|
140
140
|
summary: Process GitHub Webhooks in your Rails app (Controller mixin)
|