github_webhook 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e27cc391fb7e1a0d59740e1b37e3a9b5f233df9c
4
- data.tar.gz: 2d19ae98827eac9cc77f60b6858af4ee81b3cfa7
3
+ metadata.gz: 971cc5e4ac1f04fe8067b12d565572750bde24da
4
+ data.tar.gz: b215b4c107fa6b9e9b7436a0152ded65632135a0
5
5
  SHA512:
6
- metadata.gz: aa425244209e44340d377df23fae3de61fc665a961f37fe8976744f60bfd76ab4753f9e702d48236f66798abe2ecc8271f888a6eb1db536437ffb25263b5a7e6
7
- data.tar.gz: 473a95831be06e46c889edf817ff865ef33dcd47379bc4c75b236efba1813da31d7edc136ce5af07e8c93a63a4584579b90ffbb35974069d87ef195b1eba9c3e
6
+ metadata.gz: 34b828dc663da4d04179bd51fcf0cfde7ff250149a006b6dfac52a31f4aa79b798f2005f17b44704c97d0afcef17fabb2c9ae99ac02b39f37bb6cff5a1748c8a
7
+ data.tar.gz: 6b129f77c6c5a30429435903002565393dc6ccca3ee083cae5fad64ede7d6fe5b851dba177b4a141fba6047bc8b0dc38a3b1fb05372392df885bc897d9f4bf47
@@ -1,26 +1,26 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github_webhook (1.0.2)
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.0.1)
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.2)
18
+ concurrent-ruby (1.0.5)
19
19
  diff-lcs (1.2.5)
20
20
  docile (1.1.5)
21
- i18n (0.7.0)
21
+ i18n (0.8.1)
22
22
  json (1.8.3)
23
- minitest (5.9.1)
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.5)
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.13.2
54
+ 1.14.6
data/README.md CHANGED
@@ -13,7 +13,7 @@ to a [GitHub webhook](https://developer.github.com/webhooks/)
13
13
  Add this line to your application's Gemfile:
14
14
 
15
15
  ```ruby
16
- gem 'github_webhook', '~> 1.0.2'
16
+ gem 'github_webhook', '~> 1.0.3'
17
17
  ```
18
18
 
19
19
  And then execute:
@@ -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
@@ -1,3 +1,3 @@
1
1
  module GithubWebhook
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
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.2
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: 2016-11-07 00:00:00.000000000 Z
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.6.6
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)