pghub-issue_title 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 +4 -4
- data/README.md +26 -3
- data/lib/pghub/issue_title/version.rb +1 -1
- data/pghub-issue_title.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7567907156a48854c4c91cbb197cbcd66e16c19b
|
4
|
+
data.tar.gz: 4ddcd92643ca7b052eb4ff55a18df9dde8c509ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5b2cecba5236e4c4edf43d52661bf19eac8a4d0e487b1968549dc2ce61b7e021655670cea242bcff5edadc65df0d01900b8903a94fcb85c56335d09e2858bd1
|
7
|
+
data.tar.gz: 46a55304c3e498ba3a6c829eba2d07bc50fbc4e7434552a00926872238cd690ff0d5b42cc400cc5b95e79cb741b2bccd94912f29a1a94b9f3c7c35150d2d9e7f
|
data/README.md
CHANGED
@@ -22,13 +22,19 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
+
### Get github access token
|
26
|
+
|
27
|
+
### Deploy to heroku
|
28
|
+
|
29
|
+
[](https://heroku.com/deploy?template=https://github.com/playground-live/pghub-server/tree/issue_title)
|
30
|
+
|
31
|
+
### Deploy manually
|
25
32
|
- mount in routes.rb
|
26
33
|
|
27
34
|
```ruby
|
28
|
-
mount Pghub::Base::Engine => 'some
|
35
|
+
mount Pghub::Base::Engine => 'some/path'
|
29
36
|
```
|
30
37
|
|
31
|
-
- Get github access token
|
32
38
|
- Add following settings to config/initializers/pghub.rb
|
33
39
|
|
34
40
|
```ruby
|
@@ -39,7 +45,24 @@ end
|
|
39
45
|
```
|
40
46
|
|
41
47
|
- Deploy to server
|
42
|
-
|
48
|
+
|
49
|
+
|
50
|
+
### Set webhook to your repository
|
51
|
+
|
52
|
+
|||
|
53
|
+
|:-:|:-:|
|
54
|
+
|URL|heroku'sURL/github_webhooks or heroku'sURL/some/path|
|
55
|
+
|Content-Type|application/json|
|
56
|
+
|Secret||
|
57
|
+
|event|check the following events|
|
58
|
+
|
59
|
+
#### events
|
60
|
+
- commit comment
|
61
|
+
- issue comment
|
62
|
+
- issues
|
63
|
+
- pull request
|
64
|
+
- pull request comment
|
65
|
+
- pull request review comment
|
43
66
|
|
44
67
|
## Development
|
45
68
|
|
data/pghub-issue_title.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pghub-issue_title
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
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-
|
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
|
description: This gem posts issue title when you comment including "ref issue's URL"
|