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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -5
  3. data/lib/totrello/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b62b102f663086f4c104af18795b654704f07416
4
- data.tar.gz: a3a5ca5835da9fff3cf8f5b17ea9995b1b6ddfe5
3
+ metadata.gz: fe471f4aae313aa3cdbaef629e345c67d2eae064
4
+ data.tar.gz: aa0ad565d68399d1ebb2712f731f24ebcfe3b1ec
5
5
  SHA512:
6
- metadata.gz: 797c2dffa68f99090748db06a6fd55360264e070dcb409ab745581761d7c85e545c45b64accaae541ae191e18d1421727b36b515becb96907dfc47f6e3200808
7
- data.tar.gz: ea5a00b7e752b03fe178452dd2dc81fc23d6c28d016014ae52830bfbc11961ecd67b9c6d294effa8518525edae4a45bc62156cf64185f9207e5640e294dfae47
6
+ metadata.gz: 7e6a2705e94cd44b7ada8c5f1ead2844e26a477ce23bd6c6883fd1e596dfeb493a7015bce8e267c09d03ae69d4c8bdd7a280153e93925c4269b1abeb607ababf
7
+ data.tar.gz: 1ab5370ded98196c8db93f483f65c98d73751cb880ee90f4591702ea211e974527e0d8a7c13a8781125f74d2ee66fe4f86f58e98cb71f4b182886edafce108ae
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  [![Build Status](https://travis-ci.org/whatisinternet/ToTrello.svg?branch=master)](https://travis-ci.org/whatisinternet/ToTrello)
2
+ [![Gem Version](https://badge.fury.io/rb/totrello.svg)](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
- + You must define TRELLO_DEVELOPER_PUBLIC_KEY & TRELLO_MEMBER_TOKEN
23
- + Generate your TRELLO_DEVELOPER_PUBLIC_KEY at: [https://trello.com/1/appKey/generate](https://trello.com/1/appKey/generate)
24
- + 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
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
- ### To index and create cards for another folder
36
+ ### To index and create cards for another folder
37
+
34
38
  $ ToTrello [some other folder with full path]
35
39
 
36
40
  ## Contributing
@@ -1,3 +1,3 @@
1
1
  module Totrello
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: totrello
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Teeter