trellish 0.0.5 → 0.0.6
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 -10
- data/lib/trellish/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -20,16 +20,13 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
Create a trellish.yml file in your current directory or home directory. Set it up like this:
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
|
23
|
+
1. Sign in to Trello and go to https://trello.com/1/appKey/generate.
|
|
24
|
+
1. Copy "Key" from that page to tello\_api\_key.
|
|
25
|
+
1. Copy "Secret (for OAuth signing)" from that page to tello\_oauth\_secret.
|
|
26
|
+
1. Visit http://trello.com/1/connect?key=TRELLO\_API\_KEY\_FROM\_ABOVE&name=Trellish&response_type=token&scope=read,write&expiration=never
|
|
27
|
+
1. Copy the token to trello\_oauth\_token.
|
|
28
|
+
1. Run: `curl -u 'username' -d '{"scopes":["repo"],"note":"Trellish"}' https://api.github.com/authorizations`
|
|
29
|
+
1. Copy the token parameter from the response to github\_oauth\_token.
|
|
33
30
|
|
|
34
31
|
`git checkout` the topic branch for the card you are finishing. Then do this:
|
|
35
32
|
|
data/lib/trellish/version.rb
CHANGED