totrello 0.0.6 → 0.0.7
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 +9 -5
- data/lib/totrello/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe471f4aae313aa3cdbaef629e345c67d2eae064
|
|
4
|
+
data.tar.gz: aa0ad565d68399d1ebb2712f731f24ebcfe3b1ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e6a2705e94cd44b7ada8c5f1ead2844e26a477ce23bd6c6883fd1e596dfeb493a7015bce8e267c09d03ae69d4c8bdd7a280153e93925c4269b1abeb607ababf
|
|
7
|
+
data.tar.gz: 1ab5370ded98196c8db93f483f65c98d73751cb880ee90f4591702ea211e974527e0d8a7c13a8781125f74d2ee66fe4f86f58e98cb71f4b182886edafce108ae
|
data/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
[](https://travis-ci.org/whatisinternet/ToTrello)
|
|
2
|
+
[](http://badge.fury.io/rb/totrello)
|
|
2
3
|
# Totrello
|
|
3
4
|
|
|
4
5
|
TODO: Turns Todo items into Trello cards
|
|
@@ -19,18 +20,21 @@ Install it yourself as:
|
|
|
19
20
|
|
|
20
21
|
## Usage
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
### You must define TRELLO_DEVELOPER_PUBLIC_KEY & TRELLO_MEMBER_TOKEN
|
|
24
|
+
Generate your TRELLO_DEVELOPER_PUBLIC_KEY at: [https://trello.com/1/appKey/generate](https://trello.com/1/appKey/generate)
|
|
25
|
+
Generate your TRELLO_MEMBER_TOKEN at: https://trello.com/1/authorize?key=[TRELLO_DEVELOPER_PUBLIC_KEY]&name=ToTrelloGem&expiration=never&response_type=token&scope=read,write
|
|
26
|
+
|
|
25
27
|
|
|
26
28
|
$ export TRELLO_DEVELOPER_PUBLIC_KEY='[Your key here]'
|
|
27
29
|
$ export TRELLO_MEMBER_TOKEN='[Your key here]'
|
|
30
|
+
|
|
28
31
|
|
|
32
|
+
### To Index the current working folder and create trello cards for it
|
|
29
33
|
|
|
30
|
-
### To Index the current working folder and create trello cards for it
|
|
31
34
|
$ ToTrello
|
|
32
35
|
|
|
33
|
-
|
|
36
|
+
### To index and create cards for another folder
|
|
37
|
+
|
|
34
38
|
$ ToTrello [some other folder with full path]
|
|
35
39
|
|
|
36
40
|
## Contributing
|
data/lib/totrello/version.rb
CHANGED