trellish 0.0.4 → 0.0.5
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.
- data/README.md +7 -5
- data/lib/trellish/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -27,8 +27,11 @@ Create a trellish.yml file in your current directory or home directory. Set it u
|
|
|
27
27
|
trello_oauth_secret: numbers_and_letters_and_stuff
|
|
28
28
|
# Visit http://trello.com/1/connect?key=TRELLO_API_KEY_FROM_ABOVE&name=Trellish&response_type=token&scope=read,write&expiration=never and copy the token to trello_oauth_token.
|
|
29
29
|
trello_oauth_token: numbers_and_letters_and_stuff
|
|
30
|
+
# Run: `curl -u 'username' -d '{"scopes":["repo"],"note":"Trellish"}' https://api.github.com/authorizations`
|
|
31
|
+
# Copy the token parameter from the response to github_oauth_token.
|
|
32
|
+
github_oauth_token: numbers_and_letters_and_stuff
|
|
30
33
|
|
|
31
|
-
git checkout the topic branch for the card you are finishing. Then do this:
|
|
34
|
+
`git checkout` the topic branch for the card you are finishing. Then do this:
|
|
32
35
|
|
|
33
36
|
trellish https://trello.com/c/a3Wbcde4
|
|
34
37
|
|
|
@@ -38,10 +41,9 @@ or alternately:
|
|
|
38
41
|
|
|
39
42
|
This will:
|
|
40
43
|
|
|
41
|
-
-
|
|
42
|
-
- add a
|
|
43
|
-
-
|
|
44
|
-
- remove you from the card
|
|
44
|
+
- create a pull request to merge your topic branch into master
|
|
45
|
+
- add a link to the pull request to the beginning of the card description
|
|
46
|
+
- remove everyone from the card
|
|
45
47
|
- move the card to the QA list
|
|
46
48
|
|
|
47
49
|
## Contributing
|
data/lib/trellish/version.rb
CHANGED