trellish 0.0.13 → 0.0.14
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.
- data/README.md +13 -3
- data/lib/trellish/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
|
@@ -21,9 +21,9 @@ Or install it yourself as:
|
|
|
21
21
|
Create a trellish.yml file in your current directory or home directory. Set it up like this:
|
|
22
22
|
|
|
23
23
|
1. Sign in to Trello and go to https://trello.com/1/appKey/generate.
|
|
24
|
-
1. Copy "Key" from that page to
|
|
25
|
-
1. Copy "Secret (for OAuth signing)" from that page to
|
|
26
|
-
1. Visit
|
|
24
|
+
1. Copy "Key" from that page to trello\_api\_key.
|
|
25
|
+
1. Copy "Secret (for OAuth signing)" from that page to trello\_oauth\_secret.
|
|
26
|
+
1. Visit https://trello.com/1/authorize?key=TRELLO\_API\_KEY\_FROM\_ABOVE&name=Trellish&expiration=never&response_type=token&scope=read,write
|
|
27
27
|
1. Copy the token to trello\_oauth\_token.
|
|
28
28
|
1. Run: `curl -u 'username' -d '{"scopes":["repo"],"note":"Trellish"}' https://api.github.com/authorizations`
|
|
29
29
|
1. Copy the token parameter from the response to github\_oauth\_token.
|
|
@@ -43,6 +43,16 @@ This will:
|
|
|
43
43
|
- remove everyone from the card
|
|
44
44
|
- move the card to the QA list
|
|
45
45
|
|
|
46
|
+
## Certificate issues
|
|
47
|
+
|
|
48
|
+
If you're stuck with an error along the lines of
|
|
49
|
+
|
|
50
|
+
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
|
|
51
|
+
|
|
52
|
+
try updating your root certificates. If you use RVM, this may work:
|
|
53
|
+
|
|
54
|
+
curl http://curl.haxx.se/ca/cacert.pem -o ~/.rvm/usr/ssl/cert.pem
|
|
55
|
+
|
|
46
56
|
## Contributing
|
|
47
57
|
|
|
48
58
|
1. Fork it
|
data/lib/trellish/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trellish
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.14
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-12-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: oauth2
|