gplan 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/lib/github.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de28ad83ab2592e113db3b2470609cb9faaf563c
4
- data.tar.gz: 733fe4924a1eb36d5245487f9a121b3af5968c26
3
+ metadata.gz: 4fafa32bbee634369b215c8d785a3319d48d061c
4
+ data.tar.gz: ffaea745d4598f825b23dfecbcac47ad2a95ebc1
5
5
  SHA512:
6
- metadata.gz: 178f2ffe2895f74769a12b44f9fdb712a04a387dd7a30bd14bd2952c73b1c015107ccec9196a4675291923a5b67aa88286392c49ef48bd53cd89927f09488d6f
7
- data.tar.gz: 0fa6bef00801473df3ae7db55718a33c0506a84ab840f83e933da3afb4fe8cba1ba40faf01d5baf2a1c58590663265ae2496be70462d8bdf064fd2ee52131838
6
+ metadata.gz: f123474a67cfd64f576f868eea8cd000a6e0132ba2b427851e69a9cceceb3fc9e988d5d96e575d95633ffe91155dd195bc68bd469446d0afe50d07236bf86dea
7
+ data.tar.gz: cd49340698da2df9528609023f7890b8c2e84c4938c61a3c75f2f61905cbdf5aa6595e1a346178eb01d6e2060e35e27fd7dd60f5deb78344537d4aaf6221cc24
data/README.md CHANGED
@@ -41,14 +41,14 @@ pass in a param that overrides this configuration. ie.. `gplan 98ih2h3583`
41
41
  4. you should now get a list of the pattern
42
42
 
43
43
  ```
44
- ID:STATUS:TITLE:PROJECT_NAME:PROJECT_ALIAS:PR:TITLE
44
+ PR:TITLE:ISSUES:MILESTONE
45
45
  ...
46
- ---- Unmatched PRs ----
46
+ ---- Matched Planbox Stories ----
47
47
  ...
48
- PR:TITLE
48
+ ID:STATUS:TITLE:PROJECT_NAME:PROJECT_ALIAS:PR:TITLE
49
49
  ```
50
50
 
51
- Note: unmatched PRs are github pull requests that doesn't have a matching planbox story
51
+ Note: the first table is unmatched PRs and are github pull requests that doesn't have a matching planbox story
52
52
 
53
53
  ### HTML Release notes
54
54
 
@@ -58,7 +58,7 @@ To ouput release notes as HTML
58
58
 
59
59
  They will look something like this...
60
60
 
61
- ![image](https://cloud.githubusercontent.com/assets/2390653/7012015/0a6e47b0-dc7c-11e4-8ec0-ad8b39c14e94.png)
61
+ ![image](https://cloud.githubusercontent.com/assets/2390653/7863992/7dd34df2-052d-11e5-80ef-77c2cef5b658.png)
62
62
 
63
63
 
64
64
  ## Dependency
@@ -76,7 +76,7 @@ class Github
76
76
  body = pr['body']
77
77
  # UGH, this happens when a story doesn't have any description
78
78
  return pr if body.nil?
79
- regex = /(?:close|close|closes|closed|fix|fixes|fixed|resolve|resolves|resolved|connect(?:s)?(?:ed)?\sto?)\s?+((\w*\/\w*)?#(\d+))/im
79
+ regex = /(?:close|closes|closed|fix|fixes|fixed|resolve|resolves|resolved|connect(?:s)?(?:ed)?\s(?:to)?)\s?+((\w*\/\w*)?#(\d+))/im
80
80
  linked_issues = body.scan(regex)
81
81
  return pr if linked_issues.nil?
82
82
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gplan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Koenig
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-28 00:00:00.000000000 Z
11
+ date: 2015-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty