trellor 0.1.1 → 0.1.2
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 +13 -2
- data/lib/trellor/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: 00aaf8b231d96aa5b1b834970797996c47b36983
|
4
|
+
data.tar.gz: b8d0dacea4ca5521f599e2c15c5929a29fd9d067
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9a7ca1c862aa9bbc2d662c5a2b2f8780957add5e8e86838a37d358eb6eec328f36b7c0c99e998fb2418ee51363836f08e710d3e44e9dc1384fae0062100910a
|
7
|
+
data.tar.gz: 9f53f98eac0d3df62fb46468340004dafbe19f1ab85c981d9814de3ca881fbb92d04d48419b802918b9022dc2ff58857960c3b15376f4de737a895d2cc39d59c
|
data/README.md
CHANGED
@@ -6,16 +6,27 @@ Gem to read and write to Trello, plus a terminal interface.
|
|
6
6
|
|
7
7
|
$ gem install trellor
|
8
8
|
|
9
|
-
|
9
|
+
Three environment variables need to be set: TRELLOR_KEY, TRELLOR_TOKEN,
|
10
10
|
and TRELLOR_USERNAME
|
11
11
|
|
12
|
+
**TRELLOR_KEY** comes from your developer public key at:
|
13
|
+
https://trello.com/1/appKey/generate
|
14
|
+
(note: also copy the develop api key for the next step)
|
15
|
+
|
16
|
+
**TRELLOR_TOKEN** is the member token found at:
|
17
|
+
https://trello.com/1/authorize?key=YOUR_DEVELOPER_API_KEY&name=trello-cli&expiration=never&response_type=token&scope=read,write
|
18
|
+
|
19
|
+
**TRELLOR_USERNAME** is your username
|
20
|
+
|
12
21
|
## Usage
|
13
22
|
|
14
23
|
$ trellor # prints all board names
|
15
24
|
$ trellor to # prints all list names inside the first board with name
|
16
25
|
# beginning with 'to' (case insensitive)
|
26
|
+
# for example, this will match 'ToDo'
|
17
27
|
$ trellor to.in # prints all card names in the list named 'in*' in board
|
18
|
-
# named 'to*'
|
28
|
+
# named 'to*', e.g., matches 'ToDo.Inbox'
|
29
|
+
# create a card:
|
19
30
|
$ trellor to.in 'this is a new card', 'this is an optional description.'
|
20
31
|
|
21
32
|
## Development
|
data/lib/trellor/version.rb
CHANGED