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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1864577995ba631fa6ffb8e954f6aa64e54d3da
4
- data.tar.gz: 85143e0aacc3bd846970acdfc9d7000d382d7df7
3
+ metadata.gz: 41abd3601fa42493b980a1941656c3abb8ec126a
4
+ data.tar.gz: aee0d5e1c6159999e9282514b35899e1173cec20
5
5
  SHA512:
6
- metadata.gz: 73ec61199f6fd67d0ecbe3609188032bf725f6a630f5c7f2ba4ca697d6a0d3bb628648ac4f9ef46da22eddc57ad074e6f6a41d047a9c5d91b6a04bda082079c0
7
- data.tar.gz: 96d7b93e73a037e6628bcb50f66d8f8fc48c0e2ae9f98c3b71bf3754c1c16d2c584aef00e3c9636b2c7aa45c47b9c32c3b957e3a529998b602ad0d6c3ead7e48
6
+ metadata.gz: a5c3dde0741dbdbacb5e682ecef8345003d3fe1dc2d34ccb04de6f4ea9e7b1f9a100fbf94592d881947e3e5fd616961d6e115c070f176064f79bcb54a7d26d62
7
+ data.tar.gz: c9a1e0371d59678f7d57a6e363c59475522dcc97e3631faaa0b68e11c14dee7a2de02699c0be390195a14787ec492eb9a08ceaf7cc405429903ebe1959820e87
data/.travis.yml CHANGED
@@ -1,10 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.3.0
4
- - 2.2.4
5
- - 2.1.1
6
- - 2.1.0
7
- - 2.0.0
3
+ - 2.3.1
4
+ - 2.2.5
8
5
  addons:
9
6
  code_climate:
10
7
  repo_token: 50425d682162d68af0b65bd9e5160da8337d2159fc3ebc00d2a5b14386548ac5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github_webhook (1.0.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.0)
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.12.5
54
+ 1.13.2
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', '~> 0.5.0'
16
+ gem 'github_webhook', '~> 1.0.1'
17
17
  ```
18
18
 
19
19
  And then execute:
@@ -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
@@ -1,3 +1,3 @@
1
1
  module GithubWebhook
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
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.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-08-26 00:00:00.000000000 Z
11
+ date: 2016-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack