trellor 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 00aaf8b231d96aa5b1b834970797996c47b36983
4
- data.tar.gz: b8d0dacea4ca5521f599e2c15c5929a29fd9d067
3
+ metadata.gz: 36d3123d73db68deff955ab05db04bb895655154
4
+ data.tar.gz: c4ab0e2f44d0fd67dd32a1184e134f1d5eff9784
5
5
  SHA512:
6
- metadata.gz: a9a7ca1c862aa9bbc2d662c5a2b2f8780957add5e8e86838a37d358eb6eec328f36b7c0c99e998fb2418ee51363836f08e710d3e44e9dc1384fae0062100910a
7
- data.tar.gz: 9f53f98eac0d3df62fb46468340004dafbe19f1ab85c981d9814de3ca881fbb92d04d48419b802918b9022dc2ff58857960c3b15376f4de737a895d2cc39d59c
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
- **TRELLOR_KEY** comes from your developer public key at:
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
- **TRELLOR_TOKEN** is the member token found at:
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
- **TRELLOR_USERNAME** is your username
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.
@@ -1,3 +1,5 @@
1
+ # TODO: show card descriptions
2
+
1
3
  require_relative "trellor/version"
2
4
  require 'trello'
3
5
 
@@ -1,3 +1,3 @@
1
1
  module Trellor
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
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.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Murphy-Dye