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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -2
  3. data/lib/trellor/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e4f13487321b97d189d9469868d65886ef18826
4
- data.tar.gz: f44eb9284d6f339530b91adb6b07ce0f36379cde
3
+ metadata.gz: 00aaf8b231d96aa5b1b834970797996c47b36983
4
+ data.tar.gz: b8d0dacea4ca5521f599e2c15c5929a29fd9d067
5
5
  SHA512:
6
- metadata.gz: 218efb8e7f4c1ce5a52740b2c0f91ba36a66eaa7cc80d9a0083312fa8934a884ce189b87f6268cb90bf83c002f8467fcbdb73a2ae1937d7bd9d6c7539bb216c8
7
- data.tar.gz: d3781d2b88051489a0d30ee0c73d2556ffa819176a7e6da370a0dd393f7c4b4e54786df1c5cfabead838d45fc1d97c1b969e1c24c5775acbe8680992e39b9992
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
- Need three environment variables to be set up: TRELLOR_KEY, TRELLOR_TOKEN,
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
@@ -1,3 +1,3 @@
1
1
  module Trellor
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trellor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Murphy-Dye