tacokit 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +86 -0
- data/.travis.yml +6 -0
- data/Gemfile +16 -25
- data/Guardfile +1 -1
- data/README.md +61 -17
- data/Rakefile +10 -5
- data/lib/tacokit/authorization.rb +14 -13
- data/lib/tacokit/client/actions.rb +68 -28
- data/lib/tacokit/client/boards.rb +92 -85
- data/lib/tacokit/client/cards.rb +285 -92
- data/lib/tacokit/client/checklists.rb +48 -28
- data/lib/tacokit/client/labels.rb +14 -16
- data/lib/tacokit/client/lists.rb +52 -28
- data/lib/tacokit/client/members.rb +56 -46
- data/lib/tacokit/client/notifications.rb +13 -27
- data/lib/tacokit/client/organizations.rb +0 -6
- data/lib/tacokit/client/searches.rb +0 -1
- data/lib/tacokit/client/tokens.rb +0 -6
- data/lib/tacokit/client/types.rb +0 -1
- data/lib/tacokit/client/webhooks.rb +3 -8
- data/lib/tacokit/client.rb +48 -75
- data/lib/tacokit/collection.rb +49 -0
- data/lib/tacokit/configuration.rb +4 -6
- data/lib/tacokit/error.rb +0 -2
- data/lib/tacokit/middleware/boom.rb +6 -7
- data/lib/tacokit/middleware.rb +2 -10
- data/lib/tacokit/resource.rb +84 -57
- data/lib/tacokit/response.rb +3 -3
- data/lib/tacokit/transform.rb +35 -13
- data/lib/tacokit/utils.rb +40 -8
- data/lib/tacokit/version.rb +1 -1
- data/lib/tacokit.rb +0 -2
- data/spec/cassettes/Tacokit_Client_Actions/_action_board/returns_action_board.json +1 -0
- data/spec/cassettes/Tacokit_Client_Actions/_action_card/returns_action_card.json +1 -0
- data/spec/cassettes/Tacokit_Client_Actions/_action_entities/returns_action_entities.json +1 -0
- data/spec/cassettes/Tacokit_Client_Actions/_action_list/returns_action_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_add_board_member/adds_invites_member_to_board.json +1 -1
- data/spec/cassettes/Tacokit_Client_Boards/_board_actions/returns_board_actions.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_cards/returns_board_cards.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_checklists/returns_board_checklists.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_labels/returns_board_labels.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_lists/returns_board_lists.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_members/returns_board_members.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_organization/returns_board_organization.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_preferences/returns_preferences_for_a_board.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_board_stars/returns_board_stars.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_member_board_stars/returns_board_stars.json +1 -0
- data/spec/cassettes/Tacokit_Client_Boards/_update_board_member/updates_member.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_add_comment/creates_a_comment.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_add_label/adds_label_to_card.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_add_member_to_card/adds_member_to_card.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_archive_card/archives_card.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_archive_card/restore_card.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_attachments/returns_an_attachment.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_attachments/returns_attachment.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_attachments/returns_attachments.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_card_resource.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_id.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_short_link.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_actions/returns_card_actions.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card_board/returns_card_board.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card_field/returns_a_hash.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_field/returns_a_value.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_field/returns_an_array.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_list/returns_a_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card_members/returns_members.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card_members/returns_members_voted.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_actions.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_board.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_check_item_states.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_card_stickers/returns_.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_checklists/returns_check_item_states.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_checklists/returns_checklists.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_create_card/creates_a_card.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_create_card_attachment/attaches_external_url.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_create_card_attachment/uploads_local_file.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_delete_card/deletes_a_card.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_delete_card_resource/deletes_resource.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_delete_comment/deletes_comment.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_list/returns_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_a_new_position.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_another_board_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_board.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_move_card/raises_error_if_missing_options.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_start_checklist/adds_a_checklist_item.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_start_checklist/adds_new_checklist_by_name.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_start_checklist/copies_a_checklist_by_id.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_stickers/returns_stickers.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_update_card/updates_a_card.json +1 -1
- data/spec/cassettes/Tacokit_Client_Cards/_update_checklist_item/updates_checklist_item.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_update_comment/updates_a_comment.json +1 -0
- data/spec/cassettes/Tacokit_Client_Cards/_vote/adds_a_member_s_vote_to_card.json +1 -0
- data/spec/cassettes/Tacokit_Client_Checklists/_check_items/adds_a_checklist_check_item.json +1 -0
- data/spec/cassettes/Tacokit_Client_Checklists/_check_items/retrieves_checklist_check_items.json +1 -0
- data/spec/cassettes/Tacokit_Client_Lists/_archive_list_cards/should_archive_cards_in_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Lists/_list_actions/returns_list_actions.json +1 -0
- data/spec/cassettes/Tacokit_Client_Lists/_list_board/returns_list_board.json +1 -0
- data/spec/cassettes/Tacokit_Client_Lists/_list_cards/returns_list_cards.json +1 -0
- data/spec/cassettes/Tacokit_Client_Lists/_move_list_cards/should_move_cards_in_list.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_actions/returns_member_actions.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_board_stars/returns_member_board_stars.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_boards/returns_member_boards.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_cards/returns_member_cards.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_notifications/returns_member_notifications.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_organizations/returns_member_organizations.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_tokens/returns_member_organizations.json +1 -0
- data/spec/cassettes/Tacokit_Client_Members/_tokens/returns_member_tokens.json +1 -0
- data/spec/spec_helper.rb +39 -29
- data/spec/tacokit/authorization_spec.rb +11 -11
- data/spec/tacokit/client/actions_spec.rb +56 -19
- data/spec/tacokit/client/boards_spec.rb +81 -78
- data/spec/tacokit/client/cards_spec.rb +322 -68
- data/spec/tacokit/client/checklists_spec.rb +29 -27
- data/spec/tacokit/client/labels_spec.rb +8 -16
- data/spec/tacokit/client/lists_spec.rb +74 -27
- data/spec/tacokit/client/members_spec.rb +55 -41
- data/spec/tacokit/client/notifications_spec.rb +3 -31
- data/spec/tacokit/client/organizations_spec.rb +6 -27
- data/spec/tacokit/client/searches_spec.rb +1 -3
- data/spec/tacokit/client/tokens_spec.rb +2 -18
- data/spec/tacokit/client/types_spec.rb +2 -3
- data/spec/tacokit/client/webhooks_spec.rb +6 -14
- data/spec/tacokit/client_spec.rb +3 -3
- data/spec/tacokit/configuration_spec.rb +30 -31
- data/spec/tacokit/middleware/boom_spec.rb +6 -7
- data/spec/tacokit/resource_spec.rb +142 -17
- data/spec/tacokit/transform_spec.rb +37 -35
- data/spec/tacokit_spec.rb +3 -5
- data/tacokit.gemspec +6 -6
- metadata +132 -15
- data/config.ru +0 -7
- data/lib/tacokit/middleware/debug.rb +0 -22
- data/spec/cassettes/Tacokit_Client_Boards/_update_board_resource/updates_member.json +0 -1
- data/spec/cassettes/Tacokit_Client_Members/_member/raises_error_for_missing_token.json +0 -1
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tacokit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ross Kaffenberger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -72,30 +72,29 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '10
|
75
|
+
version: '10'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '10
|
82
|
+
version: '10'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rspec
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '3
|
89
|
+
version: '3'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '3
|
97
|
-
description: A ruby toolkit for the Trello API.
|
98
|
-
Trello Ruby wrapper, ruby-trello.
|
96
|
+
version: '3'
|
97
|
+
description: A ruby toolkit for the Trello API.
|
99
98
|
email:
|
100
99
|
- rosskaff@gmail.com
|
101
100
|
executables: []
|
@@ -105,13 +104,13 @@ files:
|
|
105
104
|
- ".gitignore"
|
106
105
|
- ".pryrc"
|
107
106
|
- ".rspec"
|
107
|
+
- ".rubocop.yml"
|
108
108
|
- ".travis.yml"
|
109
109
|
- Gemfile
|
110
110
|
- Guardfile
|
111
111
|
- LICENSE
|
112
112
|
- README.md
|
113
113
|
- Rakefile
|
114
|
-
- config.ru
|
115
114
|
- lib/tacokit.rb
|
116
115
|
- lib/tacokit/authorization.rb
|
117
116
|
- lib/tacokit/client.rb
|
@@ -128,11 +127,11 @@ files:
|
|
128
127
|
- lib/tacokit/client/tokens.rb
|
129
128
|
- lib/tacokit/client/types.rb
|
130
129
|
- lib/tacokit/client/webhooks.rb
|
130
|
+
- lib/tacokit/collection.rb
|
131
131
|
- lib/tacokit/configuration.rb
|
132
132
|
- lib/tacokit/error.rb
|
133
133
|
- lib/tacokit/middleware.rb
|
134
134
|
- lib/tacokit/middleware/boom.rb
|
135
|
-
- lib/tacokit/middleware/debug.rb
|
136
135
|
- lib/tacokit/resource.rb
|
137
136
|
- lib/tacokit/response.rb
|
138
137
|
- lib/tacokit/transform.rb
|
@@ -142,9 +141,13 @@ files:
|
|
142
141
|
- spec/cassettes/Tacokit_Client/_connection/authorized_GET_request_with_app_key_and_token_params.json
|
143
142
|
- spec/cassettes/Tacokit_Client_Actions/_action/returns_a_token_authorized_action.json
|
144
143
|
- spec/cassettes/Tacokit_Client_Actions/_action/returns_oauth_authorized_board.json
|
144
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_board/returns_action_board.json
|
145
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_card/returns_action_card.json
|
146
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_entities/returns_action_entities.json
|
145
147
|
- spec/cassettes/Tacokit_Client_Actions/_action_field/returns_a_hash.json
|
146
148
|
- spec/cassettes/Tacokit_Client_Actions/_action_field/returns_a_resource.json
|
147
149
|
- spec/cassettes/Tacokit_Client_Actions/_action_field/returns_a_value.json
|
150
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_list/returns_action_list.json
|
148
151
|
- spec/cassettes/Tacokit_Client_Actions/_action_resource/returns_action_board.json
|
149
152
|
- spec/cassettes/Tacokit_Client_Actions/_action_resource/returns_action_entities.json
|
150
153
|
- spec/cassettes/Tacokit_Client_Actions/_action_resource/returns_action_memberships.json
|
@@ -155,35 +158,78 @@ files:
|
|
155
158
|
- spec/cassettes/Tacokit_Client_Boards/_add_board_member/adds_invites_member_to_board.json
|
156
159
|
- spec/cassettes/Tacokit_Client_Boards/_board/returns_a_token_authorized_board.json
|
157
160
|
- spec/cassettes/Tacokit_Client_Boards/_board/returns_oauth_authorized_board.json
|
161
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_actions/returns_board_actions.json
|
162
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_cards/returns_board_cards.json
|
163
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_checklists/returns_board_checklists.json
|
158
164
|
- spec/cassettes/Tacokit_Client_Boards/_board_field/returns_a_hash.json
|
159
165
|
- spec/cassettes/Tacokit_Client_Boards/_board_field/returns_a_value.json
|
160
166
|
- spec/cassettes/Tacokit_Client_Boards/_board_field/returns_an_array.json
|
167
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_labels/returns_board_labels.json
|
168
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_lists/returns_board_lists.json
|
169
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_members/returns_board_members.json
|
170
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_organization/returns_board_organization.json
|
171
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_preferences/returns_preferences_for_a_board.json
|
161
172
|
- spec/cassettes/Tacokit_Client_Boards/_board_resource/returns_board_actions.json
|
162
173
|
- spec/cassettes/Tacokit_Client_Boards/_board_resource/returns_board_cards.json
|
163
174
|
- spec/cassettes/Tacokit_Client_Boards/_board_resource/returns_board_members.json
|
175
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_stars/returns_board_stars.json
|
164
176
|
- spec/cassettes/Tacokit_Client_Boards/_create_board/creates_a_board.json
|
165
177
|
- spec/cassettes/Tacokit_Client_Boards/_create_board_resource/creates_a_board_calendar_key.json
|
166
178
|
- spec/cassettes/Tacokit_Client_Boards/_create_board_resource/creates_a_board_label.json
|
167
179
|
- spec/cassettes/Tacokit_Client_Boards/_create_board_resource/creates_a_board_resource.json
|
180
|
+
- spec/cassettes/Tacokit_Client_Boards/_member_board_stars/returns_board_stars.json
|
168
181
|
- spec/cassettes/Tacokit_Client_Boards/_update_board/updates_a_board.json
|
169
182
|
- spec/cassettes/Tacokit_Client_Boards/_update_board/updates_nested_resource.json
|
170
183
|
- spec/cassettes/Tacokit_Client_Boards/_update_board_field/updates_a_board_field.json
|
171
|
-
- spec/cassettes/Tacokit_Client_Boards/
|
184
|
+
- spec/cassettes/Tacokit_Client_Boards/_update_board_member/updates_member.json
|
185
|
+
- spec/cassettes/Tacokit_Client_Cards/_add_comment/creates_a_comment.json
|
186
|
+
- spec/cassettes/Tacokit_Client_Cards/_add_label/adds_label_to_card.json
|
187
|
+
- spec/cassettes/Tacokit_Client_Cards/_add_member_to_card/adds_member_to_card.json
|
188
|
+
- spec/cassettes/Tacokit_Client_Cards/_archive_card/archives_card.json
|
189
|
+
- spec/cassettes/Tacokit_Client_Cards/_archive_card/restore_card.json
|
190
|
+
- spec/cassettes/Tacokit_Client_Cards/_attachments/returns_an_attachment.json
|
191
|
+
- spec/cassettes/Tacokit_Client_Cards/_attachments/returns_attachment.json
|
192
|
+
- spec/cassettes/Tacokit_Client_Cards/_attachments/returns_attachments.json
|
193
|
+
- spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_card_resource.json
|
172
194
|
- spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_id.json
|
173
195
|
- spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_short_link.json
|
196
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_actions/returns_card_actions.json
|
197
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_board/returns_card_board.json
|
174
198
|
- spec/cassettes/Tacokit_Client_Cards/_card_field/returns_a_hash.json
|
175
199
|
- spec/cassettes/Tacokit_Client_Cards/_card_field/returns_a_value.json
|
176
200
|
- spec/cassettes/Tacokit_Client_Cards/_card_field/returns_an_array.json
|
201
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_list/returns_a_list.json
|
202
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_members/returns_members.json
|
203
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_members/returns_members_voted.json
|
177
204
|
- spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_actions.json
|
178
205
|
- spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_board.json
|
179
206
|
- spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_check_item_states.json
|
207
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_stickers/returns_.json
|
208
|
+
- spec/cassettes/Tacokit_Client_Cards/_checklists/returns_check_item_states.json
|
209
|
+
- spec/cassettes/Tacokit_Client_Cards/_checklists/returns_checklists.json
|
180
210
|
- spec/cassettes/Tacokit_Client_Cards/_create_card/creates_a_card.json
|
181
211
|
- spec/cassettes/Tacokit_Client_Cards/_create_card_attachment/attaches_external_url.json
|
182
212
|
- spec/cassettes/Tacokit_Client_Cards/_create_card_attachment/uploads_local_file.json
|
183
213
|
- spec/cassettes/Tacokit_Client_Cards/_create_card_comment/creates_a_comment.json
|
184
214
|
- spec/cassettes/Tacokit_Client_Cards/_delete_card/deletes_a_card.json
|
185
215
|
- spec/cassettes/Tacokit_Client_Cards/_delete_card_resource/deletes_resource.json
|
216
|
+
- spec/cassettes/Tacokit_Client_Cards/_delete_comment/deletes_comment.json
|
217
|
+
- spec/cassettes/Tacokit_Client_Cards/_list/returns_list.json
|
218
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_a_new_position.json
|
219
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_another_board_list.json
|
220
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_board.json
|
221
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_list.json
|
222
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/raises_error_if_missing_options.json
|
223
|
+
- spec/cassettes/Tacokit_Client_Cards/_start_checklist/adds_a_checklist_item.json
|
224
|
+
- spec/cassettes/Tacokit_Client_Cards/_start_checklist/adds_new_checklist_by_name.json
|
225
|
+
- spec/cassettes/Tacokit_Client_Cards/_start_checklist/copies_a_checklist_by_id.json
|
226
|
+
- spec/cassettes/Tacokit_Client_Cards/_stickers/returns_stickers.json
|
186
227
|
- spec/cassettes/Tacokit_Client_Cards/_update_card/updates_a_card.json
|
228
|
+
- spec/cassettes/Tacokit_Client_Cards/_update_checklist_item/updates_checklist_item.json
|
229
|
+
- spec/cassettes/Tacokit_Client_Cards/_update_comment/updates_a_comment.json
|
230
|
+
- spec/cassettes/Tacokit_Client_Cards/_vote/adds_a_member_s_vote_to_card.json
|
231
|
+
- spec/cassettes/Tacokit_Client_Checklists/_check_items/adds_a_checklist_check_item.json
|
232
|
+
- spec/cassettes/Tacokit_Client_Checklists/_check_items/retrieves_checklist_check_items.json
|
187
233
|
- spec/cassettes/Tacokit_Client_Checklists/_checklist/returns_a_checklist_by_id.json
|
188
234
|
- spec/cassettes/Tacokit_Client_Checklists/_checklist_field/returns_a_value.json
|
189
235
|
- spec/cassettes/Tacokit_Client_Checklists/_checklist_resource/returns_checklist_actions.json
|
@@ -198,15 +244,23 @@ files:
|
|
198
244
|
- spec/cassettes/Tacokit_Client_Labels/_label_resource/returns_a_board.json
|
199
245
|
- spec/cassettes/Tacokit_Client_Labels/_labels/returns_a_label_by_id.json
|
200
246
|
- spec/cassettes/Tacokit_Client_Labels/_update_label/updates_a_label.json
|
247
|
+
- spec/cassettes/Tacokit_Client_Lists/_archive_list_cards/should_archive_cards_in_list.json
|
201
248
|
- spec/cassettes/Tacokit_Client_Lists/_create_list/creates_a_list.json
|
202
249
|
- spec/cassettes/Tacokit_Client_Lists/_list/returns_a_list_by_id.json
|
250
|
+
- spec/cassettes/Tacokit_Client_Lists/_list_actions/returns_list_actions.json
|
251
|
+
- spec/cassettes/Tacokit_Client_Lists/_list_board/returns_list_board.json
|
252
|
+
- spec/cassettes/Tacokit_Client_Lists/_list_cards/returns_list_cards.json
|
203
253
|
- spec/cassettes/Tacokit_Client_Lists/_list_field/returns_a_value.json
|
204
254
|
- spec/cassettes/Tacokit_Client_Lists/_list_resource/returns_list_actions.json
|
205
255
|
- spec/cassettes/Tacokit_Client_Lists/_list_resource/returns_list_board.json
|
206
256
|
- spec/cassettes/Tacokit_Client_Lists/_list_resource/returns_list_cards.json
|
257
|
+
- spec/cassettes/Tacokit_Client_Lists/_move_list_cards/should_move_cards_in_list.json
|
207
258
|
- spec/cassettes/Tacokit_Client_Lists/_update_list/updates_a_list.json
|
259
|
+
- spec/cassettes/Tacokit_Client_Members/_actions/returns_member_actions.json
|
260
|
+
- spec/cassettes/Tacokit_Client_Members/_board_stars/returns_member_board_stars.json
|
261
|
+
- spec/cassettes/Tacokit_Client_Members/_boards/returns_member_boards.json
|
262
|
+
- spec/cassettes/Tacokit_Client_Members/_cards/returns_member_cards.json
|
208
263
|
- spec/cassettes/Tacokit_Client_Members/_member/authenticated/returns_self.json
|
209
|
-
- spec/cassettes/Tacokit_Client_Members/_member/raises_error_for_missing_token.json
|
210
264
|
- spec/cassettes/Tacokit_Client_Members/_member/returns_a_member.json
|
211
265
|
- spec/cassettes/Tacokit_Client_Members/_member/returns_self.json
|
212
266
|
- spec/cassettes/Tacokit_Client_Members/_member/supports_query_fields_as_string_or_array.json
|
@@ -218,6 +272,10 @@ files:
|
|
218
272
|
- spec/cassettes/Tacokit_Client_Members/_member_resource/returns_member_actions.json
|
219
273
|
- spec/cassettes/Tacokit_Client_Members/_member_resource/returns_member_board_stars.json
|
220
274
|
- spec/cassettes/Tacokit_Client_Members/_member_resource/returns_member_boards.json
|
275
|
+
- spec/cassettes/Tacokit_Client_Members/_notifications/returns_member_notifications.json
|
276
|
+
- spec/cassettes/Tacokit_Client_Members/_organizations/returns_member_organizations.json
|
277
|
+
- spec/cassettes/Tacokit_Client_Members/_tokens/returns_member_organizations.json
|
278
|
+
- spec/cassettes/Tacokit_Client_Members/_tokens/returns_member_tokens.json
|
221
279
|
- spec/cassettes/Tacokit_Client_Members/_update_member/updates_a_member.json
|
222
280
|
- spec/cassettes/Tacokit_Client_Members/_update_member/updates_nested_resource.json
|
223
281
|
- spec/cassettes/Tacokit_Client_Notifications/_notification/returns_a_notification_by_id.json
|
@@ -297,14 +355,18 @@ rubyforge_project:
|
|
297
355
|
rubygems_version: 2.2.2
|
298
356
|
signing_key:
|
299
357
|
specification_version: 4
|
300
|
-
summary: A
|
358
|
+
summary: A ruby toolkit for the Trello API.
|
301
359
|
test_files:
|
302
360
|
- spec/cassettes/Tacokit_Client/_connection/authorized_GET_request_with_app_key_and_token_params.json
|
303
361
|
- spec/cassettes/Tacokit_Client_Actions/_action/returns_a_token_authorized_action.json
|
304
362
|
- spec/cassettes/Tacokit_Client_Actions/_action/returns_oauth_authorized_board.json
|
363
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_board/returns_action_board.json
|
364
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_card/returns_action_card.json
|
365
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_entities/returns_action_entities.json
|
305
366
|
- spec/cassettes/Tacokit_Client_Actions/_action_field/returns_a_hash.json
|
306
367
|
- spec/cassettes/Tacokit_Client_Actions/_action_field/returns_a_resource.json
|
307
368
|
- spec/cassettes/Tacokit_Client_Actions/_action_field/returns_a_value.json
|
369
|
+
- spec/cassettes/Tacokit_Client_Actions/_action_list/returns_action_list.json
|
308
370
|
- spec/cassettes/Tacokit_Client_Actions/_action_resource/returns_action_board.json
|
309
371
|
- spec/cassettes/Tacokit_Client_Actions/_action_resource/returns_action_entities.json
|
310
372
|
- spec/cassettes/Tacokit_Client_Actions/_action_resource/returns_action_memberships.json
|
@@ -315,35 +377,78 @@ test_files:
|
|
315
377
|
- spec/cassettes/Tacokit_Client_Boards/_add_board_member/adds_invites_member_to_board.json
|
316
378
|
- spec/cassettes/Tacokit_Client_Boards/_board/returns_a_token_authorized_board.json
|
317
379
|
- spec/cassettes/Tacokit_Client_Boards/_board/returns_oauth_authorized_board.json
|
380
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_actions/returns_board_actions.json
|
381
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_cards/returns_board_cards.json
|
382
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_checklists/returns_board_checklists.json
|
318
383
|
- spec/cassettes/Tacokit_Client_Boards/_board_field/returns_a_hash.json
|
319
384
|
- spec/cassettes/Tacokit_Client_Boards/_board_field/returns_a_value.json
|
320
385
|
- spec/cassettes/Tacokit_Client_Boards/_board_field/returns_an_array.json
|
386
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_labels/returns_board_labels.json
|
387
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_lists/returns_board_lists.json
|
388
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_members/returns_board_members.json
|
389
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_organization/returns_board_organization.json
|
390
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_preferences/returns_preferences_for_a_board.json
|
321
391
|
- spec/cassettes/Tacokit_Client_Boards/_board_resource/returns_board_actions.json
|
322
392
|
- spec/cassettes/Tacokit_Client_Boards/_board_resource/returns_board_cards.json
|
323
393
|
- spec/cassettes/Tacokit_Client_Boards/_board_resource/returns_board_members.json
|
394
|
+
- spec/cassettes/Tacokit_Client_Boards/_board_stars/returns_board_stars.json
|
324
395
|
- spec/cassettes/Tacokit_Client_Boards/_create_board/creates_a_board.json
|
325
396
|
- spec/cassettes/Tacokit_Client_Boards/_create_board_resource/creates_a_board_calendar_key.json
|
326
397
|
- spec/cassettes/Tacokit_Client_Boards/_create_board_resource/creates_a_board_label.json
|
327
398
|
- spec/cassettes/Tacokit_Client_Boards/_create_board_resource/creates_a_board_resource.json
|
399
|
+
- spec/cassettes/Tacokit_Client_Boards/_member_board_stars/returns_board_stars.json
|
328
400
|
- spec/cassettes/Tacokit_Client_Boards/_update_board/updates_a_board.json
|
329
401
|
- spec/cassettes/Tacokit_Client_Boards/_update_board/updates_nested_resource.json
|
330
402
|
- spec/cassettes/Tacokit_Client_Boards/_update_board_field/updates_a_board_field.json
|
331
|
-
- spec/cassettes/Tacokit_Client_Boards/
|
403
|
+
- spec/cassettes/Tacokit_Client_Boards/_update_board_member/updates_member.json
|
404
|
+
- spec/cassettes/Tacokit_Client_Cards/_add_comment/creates_a_comment.json
|
405
|
+
- spec/cassettes/Tacokit_Client_Cards/_add_label/adds_label_to_card.json
|
406
|
+
- spec/cassettes/Tacokit_Client_Cards/_add_member_to_card/adds_member_to_card.json
|
407
|
+
- spec/cassettes/Tacokit_Client_Cards/_archive_card/archives_card.json
|
408
|
+
- spec/cassettes/Tacokit_Client_Cards/_archive_card/restore_card.json
|
409
|
+
- spec/cassettes/Tacokit_Client_Cards/_attachments/returns_an_attachment.json
|
410
|
+
- spec/cassettes/Tacokit_Client_Cards/_attachments/returns_attachment.json
|
411
|
+
- spec/cassettes/Tacokit_Client_Cards/_attachments/returns_attachments.json
|
412
|
+
- spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_card_resource.json
|
332
413
|
- spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_id.json
|
333
414
|
- spec/cassettes/Tacokit_Client_Cards/_card/returns_a_card_by_short_link.json
|
415
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_actions/returns_card_actions.json
|
416
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_board/returns_card_board.json
|
334
417
|
- spec/cassettes/Tacokit_Client_Cards/_card_field/returns_a_hash.json
|
335
418
|
- spec/cassettes/Tacokit_Client_Cards/_card_field/returns_a_value.json
|
336
419
|
- spec/cassettes/Tacokit_Client_Cards/_card_field/returns_an_array.json
|
420
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_list/returns_a_list.json
|
421
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_members/returns_members.json
|
422
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_members/returns_members_voted.json
|
337
423
|
- spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_actions.json
|
338
424
|
- spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_board.json
|
339
425
|
- spec/cassettes/Tacokit_Client_Cards/_card_resource/returns_card_check_item_states.json
|
426
|
+
- spec/cassettes/Tacokit_Client_Cards/_card_stickers/returns_.json
|
427
|
+
- spec/cassettes/Tacokit_Client_Cards/_checklists/returns_check_item_states.json
|
428
|
+
- spec/cassettes/Tacokit_Client_Cards/_checklists/returns_checklists.json
|
340
429
|
- spec/cassettes/Tacokit_Client_Cards/_create_card/creates_a_card.json
|
341
430
|
- spec/cassettes/Tacokit_Client_Cards/_create_card_attachment/attaches_external_url.json
|
342
431
|
- spec/cassettes/Tacokit_Client_Cards/_create_card_attachment/uploads_local_file.json
|
343
432
|
- spec/cassettes/Tacokit_Client_Cards/_create_card_comment/creates_a_comment.json
|
344
433
|
- spec/cassettes/Tacokit_Client_Cards/_delete_card/deletes_a_card.json
|
345
434
|
- spec/cassettes/Tacokit_Client_Cards/_delete_card_resource/deletes_resource.json
|
435
|
+
- spec/cassettes/Tacokit_Client_Cards/_delete_comment/deletes_comment.json
|
436
|
+
- spec/cassettes/Tacokit_Client_Cards/_list/returns_list.json
|
437
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_a_new_position.json
|
438
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_another_board_list.json
|
439
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_board.json
|
440
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/moves_card_to_list.json
|
441
|
+
- spec/cassettes/Tacokit_Client_Cards/_move_card/raises_error_if_missing_options.json
|
442
|
+
- spec/cassettes/Tacokit_Client_Cards/_start_checklist/adds_a_checklist_item.json
|
443
|
+
- spec/cassettes/Tacokit_Client_Cards/_start_checklist/adds_new_checklist_by_name.json
|
444
|
+
- spec/cassettes/Tacokit_Client_Cards/_start_checklist/copies_a_checklist_by_id.json
|
445
|
+
- spec/cassettes/Tacokit_Client_Cards/_stickers/returns_stickers.json
|
346
446
|
- spec/cassettes/Tacokit_Client_Cards/_update_card/updates_a_card.json
|
447
|
+
- spec/cassettes/Tacokit_Client_Cards/_update_checklist_item/updates_checklist_item.json
|
448
|
+
- spec/cassettes/Tacokit_Client_Cards/_update_comment/updates_a_comment.json
|
449
|
+
- spec/cassettes/Tacokit_Client_Cards/_vote/adds_a_member_s_vote_to_card.json
|
450
|
+
- spec/cassettes/Tacokit_Client_Checklists/_check_items/adds_a_checklist_check_item.json
|
451
|
+
- spec/cassettes/Tacokit_Client_Checklists/_check_items/retrieves_checklist_check_items.json
|
347
452
|
- spec/cassettes/Tacokit_Client_Checklists/_checklist/returns_a_checklist_by_id.json
|
348
453
|
- spec/cassettes/Tacokit_Client_Checklists/_checklist_field/returns_a_value.json
|
349
454
|
- spec/cassettes/Tacokit_Client_Checklists/_checklist_resource/returns_checklist_actions.json
|
@@ -358,15 +463,23 @@ test_files:
|
|
358
463
|
- spec/cassettes/Tacokit_Client_Labels/_label_resource/returns_a_board.json
|
359
464
|
- spec/cassettes/Tacokit_Client_Labels/_labels/returns_a_label_by_id.json
|
360
465
|
- spec/cassettes/Tacokit_Client_Labels/_update_label/updates_a_label.json
|
466
|
+
- spec/cassettes/Tacokit_Client_Lists/_archive_list_cards/should_archive_cards_in_list.json
|
361
467
|
- spec/cassettes/Tacokit_Client_Lists/_create_list/creates_a_list.json
|
362
468
|
- spec/cassettes/Tacokit_Client_Lists/_list/returns_a_list_by_id.json
|
469
|
+
- spec/cassettes/Tacokit_Client_Lists/_list_actions/returns_list_actions.json
|
470
|
+
- spec/cassettes/Tacokit_Client_Lists/_list_board/returns_list_board.json
|
471
|
+
- spec/cassettes/Tacokit_Client_Lists/_list_cards/returns_list_cards.json
|
363
472
|
- spec/cassettes/Tacokit_Client_Lists/_list_field/returns_a_value.json
|
364
473
|
- spec/cassettes/Tacokit_Client_Lists/_list_resource/returns_list_actions.json
|
365
474
|
- spec/cassettes/Tacokit_Client_Lists/_list_resource/returns_list_board.json
|
366
475
|
- spec/cassettes/Tacokit_Client_Lists/_list_resource/returns_list_cards.json
|
476
|
+
- spec/cassettes/Tacokit_Client_Lists/_move_list_cards/should_move_cards_in_list.json
|
367
477
|
- spec/cassettes/Tacokit_Client_Lists/_update_list/updates_a_list.json
|
478
|
+
- spec/cassettes/Tacokit_Client_Members/_actions/returns_member_actions.json
|
479
|
+
- spec/cassettes/Tacokit_Client_Members/_board_stars/returns_member_board_stars.json
|
480
|
+
- spec/cassettes/Tacokit_Client_Members/_boards/returns_member_boards.json
|
481
|
+
- spec/cassettes/Tacokit_Client_Members/_cards/returns_member_cards.json
|
368
482
|
- spec/cassettes/Tacokit_Client_Members/_member/authenticated/returns_self.json
|
369
|
-
- spec/cassettes/Tacokit_Client_Members/_member/raises_error_for_missing_token.json
|
370
483
|
- spec/cassettes/Tacokit_Client_Members/_member/returns_a_member.json
|
371
484
|
- spec/cassettes/Tacokit_Client_Members/_member/returns_self.json
|
372
485
|
- spec/cassettes/Tacokit_Client_Members/_member/supports_query_fields_as_string_or_array.json
|
@@ -378,6 +491,10 @@ test_files:
|
|
378
491
|
- spec/cassettes/Tacokit_Client_Members/_member_resource/returns_member_actions.json
|
379
492
|
- spec/cassettes/Tacokit_Client_Members/_member_resource/returns_member_board_stars.json
|
380
493
|
- spec/cassettes/Tacokit_Client_Members/_member_resource/returns_member_boards.json
|
494
|
+
- spec/cassettes/Tacokit_Client_Members/_notifications/returns_member_notifications.json
|
495
|
+
- spec/cassettes/Tacokit_Client_Members/_organizations/returns_member_organizations.json
|
496
|
+
- spec/cassettes/Tacokit_Client_Members/_tokens/returns_member_organizations.json
|
497
|
+
- spec/cassettes/Tacokit_Client_Members/_tokens/returns_member_tokens.json
|
381
498
|
- spec/cassettes/Tacokit_Client_Members/_update_member/updates_a_member.json
|
382
499
|
- spec/cassettes/Tacokit_Client_Members/_update_member/updates_nested_resource.json
|
383
500
|
- spec/cassettes/Tacokit_Client_Notifications/_notification/returns_a_notification_by_id.json
|
data/config.ru
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
require 'pry'
|
2
|
-
module Tacokit
|
3
|
-
module Middleware
|
4
|
-
|
5
|
-
class Debug < Faraday::Response::Middleware
|
6
|
-
def on_complete(env)
|
7
|
-
binding.pry
|
8
|
-
env
|
9
|
-
end
|
10
|
-
|
11
|
-
def parse(body)
|
12
|
-
binding.pry
|
13
|
-
body
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
Faraday::Response.register_middleware \
|
18
|
-
:debug => lambda { Tacokit::Middleware::Debug }
|
19
|
-
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"put","uri":"https://api.trello.com/1/boards/548a675581d1d669c9e8184e/members?key=<TRELLO_APP_KEY>&token=<TRELLO_APP_TOKEN>","body":{"encoding":"UTF-8","base64_string":"eyJlbWFpbCI6InJvc3NrYWZmK3RhY29raXQzQGdtYWlsLmNvbSIsImZ1bGxO\nYW1lIjoiVGFjbyBLaXQzIn0=\n"},"headers":{"User-Agent":["TacoKit 0.0.1"],"Content-Type":["application/json"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["max-age=0, must-revalidate, no-cache, no-store"],"X-Content-Type-Options":["nosniff"],"Strict-Transport-Security":["max-age=15768000"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["DENY"],"X-Trello-Version":["1.272.0"],"X-Trello-Environment":["Production"],"Set-Cookie":["dsc=f4fb46eabb7f5b204ec2254334eb93e00375c4a5413b3d228ca041c0f6e74893; Path=/; Expires=Thu, 01 Jan 2015 16:10:15 GMT; Secure","incap_ses_220_168562=/MhRRnoWQFDVK59qN5kNA+Z8oVQAAAAAD7vapuRtbkAYYtJpJlt4NA==; path=/; Domain=.trello.com","visid_incap_168562=FUnpdwOPR0CHM8tredSBi+Z8oVQAAAAAQUIPAAAAAAB9lQdRW0M7y7c6M6baKwRT; expires=Wed, 28 Dec 2016 15:35:42 GMT; path=/; Domain=.trello.com"],"X-Server-Time":["1419869415755"],"Expires":["Thu, 01 Jan 1970 00:00:00"],"Content-Type":["application/json"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, PUT, POST, DELETE"],"Content-Length":["555"],"Vary":["Accept-Encoding"],"Date":["Mon, 29 Dec 2014 16:10:15 GMT"],"X-Iinfo":["10-69479657-69472429 PNNY RT(1419869414529 51) q(0 0 0 -1) r(2 2) U6"],"X-Cdn":["Incapsula"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjU0YTE3YmY0OTExZjVlNzlmNmVjZTY1MiIsImF2YXRhckhhc2gi\nOm51bGwsImJpbyI6IiIsImJpb0RhdGEiOm51bGwsImNvbmZpcm1lZCI6ZmFs\nc2UsImZ1bGxOYW1lIjoiVGFjbyBLaXQzIiwiaWRQcmVtT3Jnc0FkbWluIjpb\nXSwiaW5pdGlhbHMiOiJUSyIsIm1lbWJlclR5cGUiOiJnaG9zdCIsInByb2R1\nY3RzIjpbXSwic3RhdHVzIjoiZGlzY29ubmVjdGVkIiwidXJsIjoiaHR0cHM6\nLy90cmVsbG8uY29tL3RhY29raXQzIiwidXNlcm5hbWUiOiJ0YWNva2l0MyIs\nImF2YXRhclNvdXJjZSI6bnVsbCwiZW1haWwiOiJyb3Nza2FmZit0YWNva2l0\nM0BnbWFpbC5jb20iLCJncmF2YXRhckhhc2giOm51bGwsImlkQm9hcmRzIjpb\nIjU0OGE2NzU1ODFkMWQ2NjljOWU4MTg0ZSJdLCJpZE9yZ2FuaXphdGlvbnMi\nOltdLCJsb2dpblR5cGVzIjpudWxsLCJvbmVUaW1lTWVzc2FnZXNEaXNtaXNz\nZWQiOm51bGwsInByZWZzIjpudWxsLCJ0cm9waGllcyI6W10sInVwbG9hZGVk\nQXZhdGFySGFzaCI6bnVsbCwicHJlbWl1bUZlYXR1cmVzIjpbXSwiaWRCb2Fy\nZHNQaW5uZWQiOm51bGx9\n"},"http_version":null},"recorded_at":"Mon, 29 Dec 2014 16:10:15 GMT"},{"request":{"method":"put","uri":"https://api.trello.com/1/boards/548a675581d1d669c9e8184e/members/54a17bf4911f5e79f6ece652?key=<TRELLO_APP_KEY>&token=<TRELLO_APP_TOKEN>","body":{"encoding":"UTF-8","base64_string":"eyJ0eXBlIjoibm9ybWFsIn0=\n"},"headers":{"User-Agent":["TacoKit 0.0.1"],"Content-Type":["application/json"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["max-age=0, must-revalidate, no-cache, no-store"],"X-Content-Type-Options":["nosniff"],"Strict-Transport-Security":["max-age=15768000"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["DENY"],"X-Trello-Version":["1.272.0"],"X-Trello-Environment":["Production"],"Set-Cookie":["dsc=3ab8785c5eee64b6c69b5d7cd9514ac01732655eb1e8dd283520622039375b9e; Path=/; Expires=Thu, 01 Jan 2015 16:10:15 GMT; Secure","incap_ses_220_168562=keaHQpkIazVELJ9qN5kNA+d8oVQAAAAAzj0+QRmsVkhG2Ndk5iK1Bg==; path=/; Domain=.trello.com","visid_incap_168562=M6+D87pHRu68iA+F4sqG1ed8oVQAAAAAQUIPAAAAAAD+VEWhDZRLQsdX6vvvcIWG; expires=Wed, 28 Dec 2016 15:33:20 GMT; path=/; Domain=.trello.com"],"X-Server-Time":["1419869416091"],"Expires":["Thu, 01 Jan 1970 00:00:00"],"Content-Type":["application/json"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, PUT, POST, DELETE"],"Content-Length":["500"],"Vary":["Accept-Encoding"],"Date":["Mon, 29 Dec 2014 16:10:16 GMT"],"X-Iinfo":["9-55952238-55939026 PNNY RT(1419869414842 63) q(0 0 0 -1) r(2 2) U6"],"X-Cdn":["Incapsula"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjU0OGE2NzU1ODFkMWQ2NjljOWU4MTg0ZSIsIm1lbWJlcnMiOlt7\nImlkIjoiNGYwNzlhZGM3MzY2OGIyNDRiMWMwOTlhIiwiYXZhdGFySGFzaCI6\nIjcwNmU5NWU0MjdmOTE2NzBiZjIxZWVlNmFmY2NlZTkwIiwiaW5pdGlhbHMi\nOiJSSyIsImZ1bGxOYW1lIjoiUm9zcyBLYWZmZW5iZXJnZXIiLCJ1c2VybmFt\nZSI6InJvc3N0YSIsImNvbmZpcm1lZCI6dHJ1ZX0seyJpZCI6IjU0OGE2Njk2\nYjNiOTkxOGJlYjE0NGIwNyIsImF2YXRhckhhc2giOiJjYjBkZjQ1MDU1YmFj\nODRlN2M1ZmI3MjhlMDBlMjAxNSIsImluaXRpYWxzIjoiVEsiLCJmdWxsTmFt\nZSI6IlRhY28gS2l0IiwidXNlcm5hbWUiOiJ0YWNva2l0IiwiY29uZmlybWVk\nIjp0cnVlfSx7ImlkIjoiNTRhMTdiZjQ5MTFmNWU3OWY2ZWNlNjUyIiwiYXZh\ndGFySGFzaCI6bnVsbCwiaW5pdGlhbHMiOiJUSyIsImZ1bGxOYW1lIjoiVGFj\nbyBLaXQzIiwidXNlcm5hbWUiOiJ0YWNva2l0MyIsImNvbmZpcm1lZCI6ZmFs\nc2V9XX0=\n"},"http_version":null},"recorded_at":"Mon, 29 Dec 2014 16:10:16 GMT"},{"request":{"method":"delete","uri":"https://api.trello.com/1/boards/548a675581d1d669c9e8184e/members/54a17bf4911f5e79f6ece652?key=<TRELLO_APP_KEY>&token=<TRELLO_APP_TOKEN>","body":{"encoding":"UTF-8","base64_string":"e30=\n"},"headers":{"User-Agent":["TacoKit 0.0.1"],"Content-Type":["application/json"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["max-age=0, must-revalidate, no-cache, no-store"],"X-Content-Type-Options":["nosniff"],"Strict-Transport-Security":["max-age=15768000"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["DENY"],"X-Trello-Version":["1.272.0"],"X-Trello-Environment":["Production"],"Set-Cookie":["dsc=f06ea84a974c3106b83a1f093de55d8cd7e1948bd930be9e738a42b339b1aed3; Path=/; Expires=Thu, 01 Jan 2015 16:10:16 GMT; Secure","incap_ses_220_168562=AZ/DX1pVcDTtLJ9qN5kNA+d8oVQAAAAAW3yZy/KDjh0injkztdTifA==; path=/; Domain=.trello.com","visid_incap_168562=DZHeEQLLRUGQnkP0IdW8Yed8oVQAAAAAQUIPAAAAAACle7yuNGIjDp3EanD9VylM; expires=Wed, 28 Dec 2016 15:33:33 GMT; path=/; Domain=.trello.com"],"X-Server-Time":["1419869416594"],"Expires":["Thu, 01 Jan 1970 00:00:00"],"Content-Type":["application/json"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, PUT, POST, DELETE"],"Vary":["Accept-Encoding"],"Date":["Mon, 29 Dec 2014 16:10:16 GMT"],"Transfer-Encoding":["chunked"],"X-Iinfo":["7-27512066-27483348 PNNY RT(1419869415164 71) q(0 0 0 -1) r(4 4) U6"],"X-Cdn":["Incapsula"]},"body":{"encoding":"UTF-8","base64_string":"eyJpZCI6IjU0OGE2NzU1ODFkMWQ2NjljOWU4MTg0ZSIsIm5hbWUiOiJUZXN0\nIEJvYXJkIiwiZGVzYyI6IlRoaXMgYm9hcmQgaXMgZm9yIFRhY29raXQgdGVz\ndGluZyIsImRlc2NEYXRhIjp7ImVtb2ppIjp7fX0sImNsb3NlZCI6ZmFsc2Us\nImlkT3JnYW5pemF0aW9uIjoiNTQ4ZTMwZTk2ODNlMTkyM2Y2NzZiYTIwIiwi\ncGlubmVkIjpmYWxzZSwidXJsIjoiaHR0cHM6Ly90cmVsbG8uY29tL2Ivc3dl\nelE5WFMvdGVzdC1ib2FyZCIsInNob3J0VXJsIjoiaHR0cHM6Ly90cmVsbG8u\nY29tL2Ivc3dlelE5WFMiLCJwcmVmcyI6eyJwZXJtaXNzaW9uTGV2ZWwiOiJw\ndWJsaWMiLCJ2b3RpbmciOiJkaXNhYmxlZCIsImNvbW1lbnRzIjoibWVtYmVy\ncyIsImludml0YXRpb25zIjoibWVtYmVycyIsInNlbGZKb2luIjpmYWxzZSwi\nY2FyZENvdmVycyI6dHJ1ZSwiY2FyZEFnaW5nIjoicmVndWxhciIsImNhbGVu\nZGFyRmVlZEVuYWJsZWQiOmZhbHNlLCJiYWNrZ3JvdW5kIjoib3JhbmdlIiwi\nYmFja2dyb3VuZENvbG9yIjoiI0RGN0ExNiIsImJhY2tncm91bmRJbWFnZSI6\nbnVsbCwiYmFja2dyb3VuZEltYWdlU2NhbGVkIjpudWxsLCJiYWNrZ3JvdW5k\nVGlsZSI6ZmFsc2UsImJhY2tncm91bmRCcmlnaHRuZXNzIjoidW5rbm93biIs\nImNhbkJlUHVibGljIjp0cnVlLCJjYW5CZU9yZyI6dHJ1ZSwiY2FuQmVQcml2\nYXRlIjp0cnVlLCJjYW5JbnZpdGUiOnRydWV9LCJsYWJlbE5hbWVzIjp7Imdy\nZWVuIjoiVGVzdCBMYWJlbCAxIiwieWVsbG93IjoiTGFiZWwgMiIsIm9yYW5n\nZSI6IkxhYmVsIDMiLCJyZWQiOiJMYWJlbCA0IiwicHVycGxlIjoiTGFiZWwg\nNSIsImJsdWUiOiJCbHVlIExhYmVsIiwic2t5IjoiIiwibGltZSI6Ik5ldyBM\nYWJlbCIsInBpbmsiOiIiLCJibGFjayI6IiJ9LCJtZW1iZXJzIjpbeyJpZCI6\nIjRmMDc5YWRjNzM2NjhiMjQ0YjFjMDk5YSIsImF2YXRhckhhc2giOiI3MDZl\nOTVlNDI3ZjkxNjcwYmYyMWVlZTZhZmNjZWU5MCIsImluaXRpYWxzIjoiUksi\nLCJmdWxsTmFtZSI6IlJvc3MgS2FmZmVuYmVyZ2VyIiwidXNlcm5hbWUiOiJy\nb3NzdGEiLCJjb25maXJtZWQiOnRydWV9LHsiaWQiOiI1NDhhNjY5NmIzYjk5\nMThiZWIxNDRiMDciLCJhdmF0YXJIYXNoIjoiY2IwZGY0NTA1NWJhYzg0ZTdj\nNWZiNzI4ZTAwZTIwMTUiLCJpbml0aWFscyI6IlRLIiwiZnVsbE5hbWUiOiJU\nYWNvIEtpdCIsInVzZXJuYW1lIjoidGFjb2tpdCIsImNvbmZpcm1lZCI6dHJ1\nZX1dfQ==\n"},"http_version":null},"recorded_at":"Mon, 29 Dec 2014 16:10:16 GMT"}],"recorded_with":"VCR 2.9.3"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"get","uri":"https://api.trello.com/1/members/me?key=<TRELLO_APP_KEY>","body":{"encoding":"US-ASCII","base64_string":""},"headers":{"User-Agent":["TacoKit 0.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":400,"message":"Bad Request"},"headers":{"Cache-Control":["max-age=0, must-revalidate, no-cache, no-store"],"X-Content-Type-Options":["nosniff"],"Strict-Transport-Security":["max-age=15768000"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["DENY"],"X-Trello-Version":["1.266.2"],"X-Trello-Environment":["Production"],"Set-Cookie":["___utmvaDOussFI=JtW\u0001zugp; path=/; Max-Age=900","___utmvbDOussFI=qZV XWBOualY: etc; path=/; Max-Age=900","___utmvmDOussFI=rzUKBQbaVIa; path=/; Max-Age=900","dsc=2e0b31b62d1b2d2b122359c4de677c7df1978150e302ec4ed22ee8335ef5da49; Path=/; Expires=Wed, 17 Dec 2014 18:35:28 GMT; Secure","incap_ses_220_168562=wGSsbR9RFBEE5jsVNZkNA2/YjVQAAAAA8D9XKBhjQC11Uu4B7+1zNw==; path=/; Domain=.trello.com","visid_incap_168562=KnSx8tIHTuqV8EXwHFNAJW/YjVQAAAAAQUIPAAAAAAAfv2/QNj6BXTSQNzR4fYWO; expires=Tue, 13 Dec 2016 12:28:08 GMT; path=/; Domain=.trello.com"],"Content-Type":["text/plain"],"Expires":["Thu, 01 Jan 1970 00:00:00"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Methods":["GET, PUT, POST, DELETE"],"Content-Length":["14"],"Vary":["Accept-Encoding"],"Date":["Sun, 14 Dec 2014 18:35:28 GMT"],"X-Iinfo":["10-53023760-53020342 PNNY RT(1418582127810 42) q(0 0 0 -1) r(0 0) U11"],"X-Cdn":["Incapsula"]},"body":{"encoding":"UTF-8","base64_string":"aW52YWxpZCB0b2tlbgo=\n"},"http_version":null},"recorded_at":"Sun, 14 Dec 2014 18:35:28 GMT"}],"recorded_with":"VCR 2.9.3"}
|