pghub-lgtm 1.0.0 → 1.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c753716b85791c37980b57eba8eda7a9ebff2c5d
4
- data.tar.gz: bb426bae613557b2de71c527dda71d477d14dae2
3
+ metadata.gz: 779c1f1e2f970f58a7f2f3ea627c2b4159ab8204
4
+ data.tar.gz: b1c5ccd1082f0c1c7139d38a407dc329dc0469ac
5
5
  SHA512:
6
- metadata.gz: 1d451460251fd7cdda14a95a2df9b43931226e0c230c75b3e8a1ae749359b7c84bf28e24106f43ecd93086cc1420b7aedb74fdd2fef7f30ee1db4add27e989ab
7
- data.tar.gz: 31f23c4572d0c8ed4a7ef2b7e57bf1160bced1a4a965c53eab2adc5910cce6d066cd39679b1521e0143ae6a8468b47226ad3993bf365d1c94bc6110041043709
6
+ metadata.gz: 8d612611a94ca4bc3a9f31c6973f6db839d23b8668ff296645fce92c095bf83709e8dec1d33c4fdc6a750eef412e21acdcc93951e2e0b33d873240207bab6e3f
7
+ data.tar.gz: c701581b0ba1b1de0502e47f6b283b1480a11d5414f8ed68a0b688421253d0cf2769d1e8750a24195d8b8a4f9b4f48c955c2b17ac0876dd09800028edc8df90f
data/README.md CHANGED
@@ -21,14 +21,19 @@ Or install it yourself as:
21
21
  $ gem install pghub-lgtm
22
22
 
23
23
  ## Usage
24
+ ### Get github access token
24
25
 
26
+ ### Deploy to heroku
27
+
28
+ [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/playground-live/pghub-server/tree/lgtm)
29
+
30
+ ### Deploy manually
25
31
  - mount in routes.rb
26
32
 
27
33
  ```ruby
28
- mount Pghub::Base::Engine => 'some path'
34
+ mount Pghub::Base::Engine => 'some/path'
29
35
  ```
30
36
 
31
- - Get github access token
32
37
  - Add following settings to config/initializers/pghub.rb
33
38
 
34
39
  ```ruby
@@ -39,7 +44,25 @@ end
39
44
  ```
40
45
 
41
46
  - Deploy to server
42
- - Set webhook to your repository
47
+
48
+
49
+ ### Set webhook to your repository
50
+
51
+ |||
52
+ |:-:|:-:|
53
+ |URL|heroku'sURL/github\_webhooks or heroku'sURL/some/path|
54
+ |Content-Type|application/json|
55
+ |Secret||
56
+ |event|check the following events|
57
+
58
+ #### events
59
+ - commit comment
60
+ - issue comment
61
+ - issues
62
+ - pull request
63
+ - pull request comment
64
+ - pull request review comment
65
+
43
66
 
44
67
  ## Development
45
68
 
@@ -1,5 +1,5 @@
1
1
  module Pghub
2
2
  module Lgtm
3
- VERSION = "1.0.0"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
data/pghub-lgtm.gemspec CHANGED
@@ -24,6 +24,6 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency "rake", "~> 10.0"
25
25
  spec.add_development_dependency "rspec", "~> 3.0"
26
26
 
27
- spec.add_dependency "pghub-base", "~> 1.0.0"
27
+ spec.add_dependency "pghub-base", ">= 1.0.0"
28
28
  spec.add_dependency "mechanize"
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pghub-lgtm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ebkn12, akias, Doppon, seteen, mryoshio, sughimura
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-11-06 00:00:00.000000000 Z
11
+ date: 2017-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,14 +56,14 @@ dependencies:
56
56
  name: pghub-base
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: 1.0.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: 1.0.0
69
69
  - !ruby/object:Gem::Dependency