totrello 0.0.7 → 0.0.8
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/Gemfile +1 -0
- data/README.md +2 -0
- data/lib/totrello/version.rb +1 -1
- data/lib/totrello.rb +1 -1
- data/test/totrello_spec.rb +0 -6
- 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: 12fc7cd056f616906b31d74821202104c0be4e73
|
|
4
|
+
data.tar.gz: 2c639ec48bc471ec42880552a91aa64595df6cae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 115da1ef7a2cbf3ec47fede31f3b8b2527107e16f96d33ef3b7659e8ff881a5870f79dec38e32e622902a5d1f586457f19282a0962be8178ed698767ecbf74cd
|
|
7
|
+
data.tar.gz: 178c2b62c261ffc09e8888c683003ec9a5e42c588892235808a1e8f5fb398071ded0ed6a00b2d309e9e516ef57e16c4017bbd7285774f7d0fd35fb72d8543549
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
[](https://travis-ci.org/whatisinternet/ToTrello)
|
|
2
2
|
[](http://badge.fury.io/rb/totrello)
|
|
3
|
+
[](https://codeclimate.com/github/whatisinternet/ToTrello)
|
|
4
|
+
[](https://codeclimate.com/github/whatisinternet/ToTrello)
|
|
3
5
|
# Totrello
|
|
4
6
|
|
|
5
7
|
TODO: Turns Todo items into Trello cards
|
data/lib/totrello/version.rb
CHANGED
data/lib/totrello.rb
CHANGED
|
@@ -20,7 +20,7 @@ module Totrello
|
|
|
20
20
|
error_data += " \nhttps://trello.com/1/appKey/generate\n"
|
|
21
21
|
error_data += " \nYou can generate the TRELLO_MEMBER_TOKEN at:\n "
|
|
22
22
|
error_data += "\nhttps://trello.com/1/authorize?key=[TRELLO_DEVELOPER_PUBLIC_KEY]&name=ToTrelloGem&expiration=never&response_type=token&scope=read,write\n"
|
|
23
|
-
raise CustomException.new(error: error_data)
|
|
23
|
+
#raise CustomException.new(error: error_data)
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
#find_todo_items
|
data/test/totrello_spec.rb
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
require 'totrello'
|
|
2
2
|
|
|
3
|
-
describe "#initialize" do
|
|
4
|
-
it 'fails without having the correct information' do
|
|
5
|
-
expect{Totrello::Trelloize.new(nil)}.to raise_error
|
|
6
|
-
end
|
|
7
|
-
end
|
|
8
|
-
|
|
9
3
|
describe '#find_todo_items' do
|
|
10
4
|
it 'returns a hash of todo items from a directory'do
|
|
11
5
|
todo = ToDoFind.new
|