Forked from andyburnett/Trello to Google Spreadsheet
Last active
August 29, 2015 14:17
-
-
Save jeremypage/1bb39d3e370125134b3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
temp1 := ZnEasy get: 'address in here'. | |
trello := NeoJSONReader fromString: temp1 entity. | |
trelloLists := trello at:'lists'. | |
trelloCards := trello at:'cards'. | |
trelloLists do: [ :each|| listId | | |
listId := each at:'id'. | |
each at:'cards' put: ((trelloCards select:[:item|(( item at:'idList')=listId)])collect:[:item| item at:'name']). | |
]. | |
trelloLists do: [ :each| Transcript show: (each at: 'name'); cr. ((each at: 'cards')do:[:item| Transcript tab; show: item;cr])]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment