trellor 0.1.2 → 0.1.3
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 +8 -3
- data/lib/trellor.rb +2 -0
- 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: 36d3123d73db68deff955ab05db04bb895655154
|
4
|
+
data.tar.gz: c4ab0e2f44d0fd67dd32a1184e134f1d5eff9784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4541a6f669cb69203362bf42941a3706ac54def2b9e1918ead531c2b76386287b9de0071ecbd294912b8214bc1bae697b8bc2872497cfb8ba85f087f900fd941
|
7
|
+
data.tar.gz: 11dc8ead5eaf2c6535372d1a3dbbafdbc1b5f263ade233fc1916d5dcc50fe6e1e3906d0b49faa6e12c1a496f06b376277beddd48e50420119f7a42f2657f0e26
|
data/README.md
CHANGED
@@ -9,14 +9,14 @@ Gem to read and write to Trello, plus a terminal interface.
|
|
9
9
|
Three environment variables need to be set: TRELLOR_KEY, TRELLOR_TOKEN,
|
10
10
|
and TRELLOR_USERNAME
|
11
11
|
|
12
|
-
|
12
|
+
TRELLOR_KEY comes from your developer public key at:
|
13
13
|
https://trello.com/1/appKey/generate
|
14
14
|
(note: also copy the develop api key for the next step)
|
15
15
|
|
16
|
-
|
16
|
+
TRELLOR_TOKEN is the member token found at:
|
17
17
|
https://trello.com/1/authorize?key=YOUR_DEVELOPER_API_KEY&name=trello-cli&expiration=never&response_type=token&scope=read,write
|
18
18
|
|
19
|
-
|
19
|
+
TRELLOR_USERNAME is your username
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
@@ -29,6 +29,11 @@ Gem to read and write to Trello, plus a terminal interface.
|
|
29
29
|
# create a card:
|
30
30
|
$ trellor to.in 'this is a new card', 'this is an optional description.'
|
31
31
|
|
32
|
+
Using aliases work well, for example:
|
33
|
+
$ alias inbox="trellor todo.inbox"
|
34
|
+
$ inbox # prints cards in todo.inbox
|
35
|
+
$ inbox 'new card' # creates a new card in todo.inbox
|
36
|
+
|
32
37
|
## Development
|
33
38
|
|
34
39
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/trellor.rb
CHANGED
data/lib/trellor/version.rb
CHANGED