git_trello_post_commit 0.1.0 → 0.1.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: 650ea741b6a6a41902715be311f92a0e01bdd365
4
- data.tar.gz: 29659334553f6b7c9e92a241212385595215b7c1
3
+ metadata.gz: 471b1b00e71f8ff30557b7b4aafcfea9bff20e0b
4
+ data.tar.gz: 5259e88d12923ffc55720fb1e22c9251685fe9dd
5
5
  SHA512:
6
- metadata.gz: d12535d71a22eb1fb3554852f4200cd85cb99447f36daa53754cecf1f2a71942604b18af7d909b4ad8826fdeaf45ec7a83f954d74e10f8773e7b80da239ec248
7
- data.tar.gz: c2f80d764567d0f398833e460949d36f6cbcabc48f6c0cf1e81518412605aea64ebf9f5197e9b0423bf1ef7f15add9f7227a235a4a0822500d2922da59278934
6
+ metadata.gz: e80dbf6367d3f4b5a829a3bbeb35f6176fb1a205b2ce795b21e61210e083b9d999b01c486b860552cffeccfd036a31330aab651fc5a8463ce3f2767c3f55f153
7
+ data.tar.gz: 1c4433c99c886420ef7015b9d65771b01b4bc908f9b3885a104dbf41beaf345092dfa1cf57ec51b9e84f065c6dab6b8ec6be47b5667995f0ad7fc1f545c7e2d1
data/README.md CHANGED
@@ -42,7 +42,7 @@ Get your developer key from: https://trello.com/1/appKey/generate
42
42
 
43
43
  ### oauth_token
44
44
 
45
- You need to authorize the app with `API_KEY` to access each board separatelly. To do that:
45
+ You need to authorize the app with `API_KEY` to access each board separately. To do that:
46
46
 
47
47
  https://trello.com/1/authorize?response_type=token&name=`BOARD_NAME_AS_SHOWN_IN_URL`&scope=read,write&expiration=never&key=`API_KEY`
48
48
 
@@ -56,9 +56,9 @@ While examining the JSON from the previous step, you can also grab the value of
56
56
 
57
57
  ### commit_url_prefix
58
58
 
59
- If you have a web view of your Git repo (such as Github), you can enter the URL which, when sufixed with the commit SHA will show the commit in question. The hook will add a link to the commit in the comment it adds to the card.
59
+ If you have a web view of your Git repo (such as Github), you can enter the URL which, when suffixed with the commit SHA will show the commit in question. The hook will add a link to the commit in the comment it adds to the card.
60
60
 
61
- If you ommit the parameter, a link won't be added.
61
+ If you omit the parameter, a link won't be added.
62
62
 
63
63
  ## Usage
64
64
 
@@ -70,7 +70,7 @@ So an example commit message might be:
70
70
 
71
71
  Added that awesome feature closes #42
72
72
 
73
- For the 'case' and 'card' keywords, the card is moved to the list with id `LIST_ID_IN_PROGRESS`, while for keywords 'close' and 'fix', the card is moved to the list with id `LIST_ID_IN_DONE` .
73
+ For the 'case' and 'card' keywords, the card is moved to the list with id `LIST_ID_IN_PROGRESS`, while for keywords 'close' and 'fix', the card is moved to the list with id `LIST_ID_DONE` .
74
74
 
75
75
  ## Contributing
76
76
 
@@ -1,3 +1,3 @@
1
1
  module GitTrelloPostCommit
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_trello_post_commit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jmchambers