trellist 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 152ce5d52c26e6b08438f8025309621a6b010133
4
- data.tar.gz: 1cbeaca4934c9677f7222f69bffad3acf3acf26a
3
+ metadata.gz: ea7334a59208c6b3400c00809fda1b365ab07ee6
4
+ data.tar.gz: 4558ea822290cd42ed1daf0766f7f913c88c0b38
5
5
  SHA512:
6
- metadata.gz: ff61e726ce343f56abbdf9cbfbc65c0bf3106633950661faf290c827ccbc037537eb20e5bb2e04ea1ef65cd12a4ba6e11bce9e3b1bb148a3083d2f643140cb01
7
- data.tar.gz: 7ec64cff59f36b7bc1dafeab1f5750e6f71d56abcca400ccc2dff8788c1ade29f538ac25e5ae144b55e4129628eb78711a780ef2340955d368ff54d132692bcf
6
+ metadata.gz: 63c9f523f4fa1f746bde6ac22559914c9bd21633895b7185134e6a4dbd185cfcc85c73a124b1a8eb1de5b878f230b36e840a28a3d8e161b049d7f5b9c373bd75
7
+ data.tar.gz: 66d22ed81ba9c910a84b670e5721a19ffab0c5907215ee2551c3520202be2060a0ada55385e3e393cd923405892afa09a28fec2f92a860757cdd154153e3932c
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trellist (0.3.0)
4
+ trellist (0.4.0)
5
5
  gli (= 2.14.0)
6
6
  highline (= 1.7.8)
7
7
  paint (= 2.0.0)
@@ -40,6 +40,7 @@ command :cards do |c|
40
40
  c.flag [:f, :format], must_match: ["markdown", "plain", "html", "markdown-with-logo"], default_value: 'markdown'
41
41
  c.flag [:p, :prefix]
42
42
  c.flag [:s, :suffix]
43
+ c.flag [:l, :label]
43
44
  c.action do |global_options,options,args|
44
45
  puts Paint["fetching lists...", :blue]
45
46
  @client = Client.new(key: global_options[:key],
@@ -57,7 +58,7 @@ command :cards do |c|
57
58
  @client.lists.each_with_index do |list, index|
58
59
  puts "#{index}. #{list.name}"
59
60
  end
60
- # ask for which list or to quitf
61
+ # ask for which list or to quit
61
62
  @answer = ''
62
63
  until @answer == 'q'
63
64
  prompt = "Select from 0..#{@client.lists.size - 1} or (q)uit ---> "
@@ -73,7 +74,7 @@ command :cards do |c|
73
74
  if list=@client.lists[stringed_number.to_i]
74
75
  puts Paint["OK. Here are the cards for #{list.name}:", :blue]
75
76
  puts Paint["---", :blue]
76
- @client.list_cards(list.id)
77
+ @client.list_cards(list.id, label: options[:label] || nil)
77
78
  if options[:format] == 'markdown-with-logo'
78
79
  options[:format] = 'markdown'
79
80
  options[:prefix] += '![](https://github.trello.services/images/mini-trello-icon.png) '
@@ -38,8 +38,11 @@ class Client
38
38
  @lists = Trello::Board.find(@board).lists
39
39
  end
40
40
 
41
- def list_cards(list_id)
41
+ def list_cards(list_id, label: nil)
42
42
  @cards = Trello::List.find(list_id).cards
43
+ if label
44
+ @cards.select! {|card| card.labels.map(&:name).include?(label) }
45
+ end
43
46
  end
44
47
 
45
48
  def generate_links(format: 'markdown', prefix: '', suffix: '')
@@ -1,3 +1,3 @@
1
1
  module Trellist
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.4.0'.freeze
3
3
  end
@@ -45,13 +45,24 @@ RSpec.describe 'Client' do
45
45
  end
46
46
 
47
47
  describe 'get list cards' do
48
- it 'sets @client.cards' do
49
- @client = Client.new(board_id: 't3anNqoJ',
50
- token: 'myTRELLOtoken',
51
- key: 'myTRELLOkey')
52
- @client.list_cards('5883d2c40c15260ae897621d')
53
- expect(@client.cards).not_to be_nil
54
- expect(@client.cards.size).to eq(3)
48
+ let(:client) { Client.new(board_id: 't3anNqoJ',
49
+ token: 'myTRELLOkey',
50
+ key: 'myTRELLOtoken') }
51
+
52
+ context 'witout a label argument' do
53
+ it 'sets @client.cards' do
54
+ client.list_cards('5883d2c40c15260ae897621d')
55
+ expect(client.cards).not_to be_nil
56
+ expect(client.cards.size).to eq(3)
57
+ end
58
+ end
59
+
60
+ context 'with a label argument' do
61
+ it 'sets @client.cards limited by card label' do
62
+ client.list_cards('5883d2c40c15260ae897621d', label: 'red')
63
+ expect(client.cards).not_to be_nil
64
+ expect(client.cards.size).to eq(1)
65
+ end
55
66
  end
56
67
  end
57
68
 
@@ -0,0 +1,196 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.trello.com/1/lists/5883d2c40c15260ae897621d?key=myTRELLOkey&token=myTRELLOtoken
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - "*/*"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ User-Agent:
15
+ - rest-client/2.0.0 (darwin16.3.0 x86_64) ruby/2.4.0p0
16
+ Host:
17
+ - api.trello.com
18
+ response:
19
+ status:
20
+ code: 401
21
+ message: Unauthorized
22
+ headers:
23
+ Cache-Control:
24
+ - max-age=0, must-revalidate, no-cache, no-store
25
+ X-Content-Type-Options:
26
+ - nosniff
27
+ Strict-Transport-Security:
28
+ - max-age=15768000
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Frame-Options:
32
+ - DENY
33
+ X-Trello-Version:
34
+ - 1.882.1
35
+ X-Trello-Environment:
36
+ - Production
37
+ Access-Control-Allow-Origin:
38
+ - "*"
39
+ Access-Control-Allow-Methods:
40
+ - GET, PUT, POST, DELETE
41
+ Access-Control-Allow-Headers:
42
+ - Authorization, Accept, Content-Type
43
+ Expires:
44
+ - Thu, 01 Jan 1970 00:00:00
45
+ Content-Type:
46
+ - text/plain; charset=utf-8
47
+ Content-Length:
48
+ - '11'
49
+ Etag:
50
+ - W/"b-ca7443e3"
51
+ Vary:
52
+ - Accept-Encoding
53
+ Date:
54
+ - Wed, 08 Feb 2017 18:53:48 GMT
55
+ Connection:
56
+ - keep-alive
57
+ Set-Cookie:
58
+ - dsc=9947026da85b267add479a86dfd1cbe92907a0c99b6cfa886ba347fdbb7d4ab7; Path=/;
59
+ Expires=Sat, 11 Feb 2017 18:53:48 GMT; Secure
60
+ body:
61
+ encoding: UTF-8
62
+ string: invalid key
63
+ http_version:
64
+ recorded_at: Wed, 08 Feb 2017 18:53:58 GMT
65
+ - request:
66
+ method: get
67
+ uri: https://api.trello.com/1/lists/5883d2c40c15260ae897621d?key=myTRELLOtoken&token=myTRELLOkey
68
+ body:
69
+ encoding: US-ASCII
70
+ string: ''
71
+ headers:
72
+ Accept:
73
+ - "*/*"
74
+ Accept-Encoding:
75
+ - gzip, deflate
76
+ User-Agent:
77
+ - rest-client/2.0.0 (darwin16.3.0 x86_64) ruby/2.4.0p0
78
+ Host:
79
+ - api.trello.com
80
+ response:
81
+ status:
82
+ code: 200
83
+ message: OK
84
+ headers:
85
+ Cache-Control:
86
+ - max-age=0, must-revalidate, no-cache, no-store
87
+ X-Content-Type-Options:
88
+ - nosniff
89
+ Strict-Transport-Security:
90
+ - max-age=15768000
91
+ X-Xss-Protection:
92
+ - 1; mode=block
93
+ X-Frame-Options:
94
+ - DENY
95
+ X-Trello-Version:
96
+ - 1.882.1
97
+ X-Trello-Environment:
98
+ - Production
99
+ Access-Control-Allow-Origin:
100
+ - "*"
101
+ Access-Control-Allow-Methods:
102
+ - GET, PUT, POST, DELETE
103
+ Access-Control-Allow-Headers:
104
+ - Authorization, Accept, Content-Type
105
+ X-Server-Time:
106
+ - '1486580338534'
107
+ Expires:
108
+ - Thu, 01 Jan 1970 00:00:00
109
+ Content-Type:
110
+ - application/json; charset=utf-8
111
+ Content-Length:
112
+ - '122'
113
+ Etag:
114
+ - W/"7a-aa799eec"
115
+ Vary:
116
+ - Accept-Encoding
117
+ Date:
118
+ - Wed, 08 Feb 2017 18:58:58 GMT
119
+ Connection:
120
+ - keep-alive
121
+ Set-Cookie:
122
+ - dsc=248d3ff436439c540724e30b6d8e04861216617fcf1f34a25e198018a128e8ce; Path=/;
123
+ Expires=Sat, 11 Feb 2017 18:58:58 GMT; Secure
124
+ body:
125
+ encoding: UTF-8
126
+ string: '{"id":"5883d2c40c15260ae897621d","name":"test list alpha","closed":false,"idBoard":"5883d2bb4482996b47dbe2a5","pos":65535}'
127
+ http_version:
128
+ recorded_at: Wed, 08 Feb 2017 18:59:08 GMT
129
+ - request:
130
+ method: get
131
+ uri: https://api.trello.com/1/lists/5883d2c40c15260ae897621d/cards?filter=open&key=myTRELLOtoken&token=myTRELLOkey
132
+ body:
133
+ encoding: US-ASCII
134
+ string: ''
135
+ headers:
136
+ Accept:
137
+ - "*/*"
138
+ Accept-Encoding:
139
+ - gzip, deflate
140
+ User-Agent:
141
+ - rest-client/2.0.0 (darwin16.3.0 x86_64) ruby/2.4.0p0
142
+ Host:
143
+ - api.trello.com
144
+ response:
145
+ status:
146
+ code: 200
147
+ message: OK
148
+ headers:
149
+ Cache-Control:
150
+ - max-age=0, must-revalidate, no-cache, no-store
151
+ X-Content-Type-Options:
152
+ - nosniff
153
+ Strict-Transport-Security:
154
+ - max-age=15768000
155
+ X-Xss-Protection:
156
+ - 1; mode=block
157
+ X-Frame-Options:
158
+ - DENY
159
+ X-Trello-Version:
160
+ - 1.882.1
161
+ X-Trello-Environment:
162
+ - Production
163
+ Access-Control-Allow-Origin:
164
+ - "*"
165
+ Access-Control-Allow-Methods:
166
+ - GET, PUT, POST, DELETE
167
+ Access-Control-Allow-Headers:
168
+ - Authorization, Accept, Content-Type
169
+ X-Server-Time:
170
+ - '1486580338839'
171
+ Expires:
172
+ - Thu, 01 Jan 1970 00:00:00
173
+ Content-Type:
174
+ - application/json; charset=utf-8
175
+ Etag:
176
+ - W/"KbzdsXKNC1kvXSMs68oI0A=="
177
+ Vary:
178
+ - Accept-Encoding
179
+ Content-Encoding:
180
+ - gzip
181
+ Content-Length:
182
+ - '622'
183
+ Date:
184
+ - Wed, 08 Feb 2017 18:58:58 GMT
185
+ Connection:
186
+ - keep-alive
187
+ Set-Cookie:
188
+ - dsc=49e6ce04141ba1748b172b65f8fe57916103193b6b8462aa4414894231b86822; Path=/;
189
+ Expires=Sat, 11 Feb 2017 18:58:58 GMT; Secure
190
+ body:
191
+ encoding: ASCII-8BIT
192
+ string: !binary |-
193
+ H4sIAAAAAAAAA+2TXWvbMBSG/4uvk1iSP2TnruvGKMsKo1vHVnqhj+PERLaCLSe0Jf99UmwnzihshhZ60Tudo3Oko/fVc/fk5dKbe1GSBJKIJISMZxTHIqFAKcfexBMrEOsrA8WNYQZqb142Stm00jXY1oypGiaetHsLVpsLYfJtbh7smQRhOkVkipLvOJmHwRxHM0Tj3/ZMCbWwFd3qIzOsPzaXHzSrTiNxHoYJSdOYh1RyICzyXNEir81p7BAJHJEYMUhSGhMsDzVfoeBQ1bfauDnv7l3uZqUr24jd+sIYJlYFlOZSb6HqJyhY2TB1SJ0qju+0VzMOyspwd5xQgEwIRmmWAeIsCT17VckKsANmWttZNtrWx1EURBOvdhMs8nJtd68/XYj1Dn22JZzJpRP3ydvqg8po4m1z2OXlsn1H94xujLrhtahyPkhlesmb5WMr69G09qRTeOlWrstldeHe1paw41vb2BlT5RuT6/JkcgO9SnZ5qYuNAgPd9v655FlPLg+3K+td3RvSmdSGqpf27Fc+I/B//pPOhGUFUDpRtNLVIG5qJzTe33eu/KiU3V0Zs6nnvm8qUErPrEi+8AdOPSN98+9GH0/dX9hPzoFLORMUBRHBIWUkDLIXBY7gGUnQWwCOvCZwwQA4zqoeOBxgRPE5cT9/XW/Q1fbbO3GjiAtGEvfgCNgNkDsmRjA38Gocc32jT6buO/zNnAjjKIMMBUxmWGYyfVnm0lmQRG+BueA1mYvPmHs8MpfGMaLnzAlDv6xTK+o7c2OYi0cyV4EcANdGI2gbuDSOtr7RD6buI+zv/wDKyBFPVAoAAA==
194
+ http_version:
195
+ recorded_at: Wed, 08 Feb 2017 18:59:09 GMT
196
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,196 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.trello.com/1/lists/5883d2c40c15260ae897621d?key=myTRELLOkey&token=myTRELLOtoken
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - "*/*"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ User-Agent:
15
+ - rest-client/2.0.0 (darwin16.3.0 x86_64) ruby/2.4.0p0
16
+ Host:
17
+ - api.trello.com
18
+ response:
19
+ status:
20
+ code: 401
21
+ message: Unauthorized
22
+ headers:
23
+ Cache-Control:
24
+ - max-age=0, must-revalidate, no-cache, no-store
25
+ X-Content-Type-Options:
26
+ - nosniff
27
+ Strict-Transport-Security:
28
+ - max-age=15768000
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Frame-Options:
32
+ - DENY
33
+ X-Trello-Version:
34
+ - 1.882.1
35
+ X-Trello-Environment:
36
+ - Production
37
+ Access-Control-Allow-Origin:
38
+ - "*"
39
+ Access-Control-Allow-Methods:
40
+ - GET, PUT, POST, DELETE
41
+ Access-Control-Allow-Headers:
42
+ - Authorization, Accept, Content-Type
43
+ Expires:
44
+ - Thu, 01 Jan 1970 00:00:00
45
+ Content-Type:
46
+ - text/plain; charset=utf-8
47
+ Content-Length:
48
+ - '11'
49
+ Etag:
50
+ - W/"b-ca7443e3"
51
+ Vary:
52
+ - Accept-Encoding
53
+ Date:
54
+ - Wed, 08 Feb 2017 18:53:48 GMT
55
+ Connection:
56
+ - keep-alive
57
+ Set-Cookie:
58
+ - dsc=d8a4bb605befa21d1140ce61e3d353f0a680cf62c501297fa243950c40f258ee; Path=/;
59
+ Expires=Sat, 11 Feb 2017 18:53:48 GMT; Secure
60
+ body:
61
+ encoding: UTF-8
62
+ string: invalid key
63
+ http_version:
64
+ recorded_at: Wed, 08 Feb 2017 18:53:58 GMT
65
+ - request:
66
+ method: get
67
+ uri: https://api.trello.com/1/lists/5883d2c40c15260ae897621d?key=myTRELLOtoken&token=myTRELLOkey
68
+ body:
69
+ encoding: US-ASCII
70
+ string: ''
71
+ headers:
72
+ Accept:
73
+ - "*/*"
74
+ Accept-Encoding:
75
+ - gzip, deflate
76
+ User-Agent:
77
+ - rest-client/2.0.0 (darwin16.3.0 x86_64) ruby/2.4.0p0
78
+ Host:
79
+ - api.trello.com
80
+ response:
81
+ status:
82
+ code: 200
83
+ message: OK
84
+ headers:
85
+ Cache-Control:
86
+ - max-age=0, must-revalidate, no-cache, no-store
87
+ X-Content-Type-Options:
88
+ - nosniff
89
+ Strict-Transport-Security:
90
+ - max-age=15768000
91
+ X-Xss-Protection:
92
+ - 1; mode=block
93
+ X-Frame-Options:
94
+ - DENY
95
+ X-Trello-Version:
96
+ - 1.882.1
97
+ X-Trello-Environment:
98
+ - Production
99
+ Access-Control-Allow-Origin:
100
+ - "*"
101
+ Access-Control-Allow-Methods:
102
+ - GET, PUT, POST, DELETE
103
+ Access-Control-Allow-Headers:
104
+ - Authorization, Accept, Content-Type
105
+ X-Server-Time:
106
+ - '1486580337906'
107
+ Expires:
108
+ - Thu, 01 Jan 1970 00:00:00
109
+ Content-Type:
110
+ - application/json; charset=utf-8
111
+ Content-Length:
112
+ - '122'
113
+ Etag:
114
+ - W/"7a-aa799eec"
115
+ Vary:
116
+ - Accept-Encoding
117
+ Date:
118
+ - Wed, 08 Feb 2017 18:58:57 GMT
119
+ Connection:
120
+ - keep-alive
121
+ Set-Cookie:
122
+ - dsc=1eeee91b2b45147cefba8a83e4756cf71e8e87172f05ae858782055496e68f31; Path=/;
123
+ Expires=Sat, 11 Feb 2017 18:58:57 GMT; Secure
124
+ body:
125
+ encoding: UTF-8
126
+ string: '{"id":"5883d2c40c15260ae897621d","name":"test list alpha","closed":false,"idBoard":"5883d2bb4482996b47dbe2a5","pos":65535}'
127
+ http_version:
128
+ recorded_at: Wed, 08 Feb 2017 18:59:08 GMT
129
+ - request:
130
+ method: get
131
+ uri: https://api.trello.com/1/lists/5883d2c40c15260ae897621d/cards?filter=open&key=myTRELLOtoken&token=myTRELLOkey
132
+ body:
133
+ encoding: US-ASCII
134
+ string: ''
135
+ headers:
136
+ Accept:
137
+ - "*/*"
138
+ Accept-Encoding:
139
+ - gzip, deflate
140
+ User-Agent:
141
+ - rest-client/2.0.0 (darwin16.3.0 x86_64) ruby/2.4.0p0
142
+ Host:
143
+ - api.trello.com
144
+ response:
145
+ status:
146
+ code: 200
147
+ message: OK
148
+ headers:
149
+ Cache-Control:
150
+ - max-age=0, must-revalidate, no-cache, no-store
151
+ X-Content-Type-Options:
152
+ - nosniff
153
+ Strict-Transport-Security:
154
+ - max-age=15768000
155
+ X-Xss-Protection:
156
+ - 1; mode=block
157
+ X-Frame-Options:
158
+ - DENY
159
+ X-Trello-Version:
160
+ - 1.882.1
161
+ X-Trello-Environment:
162
+ - Production
163
+ Access-Control-Allow-Origin:
164
+ - "*"
165
+ Access-Control-Allow-Methods:
166
+ - GET, PUT, POST, DELETE
167
+ Access-Control-Allow-Headers:
168
+ - Authorization, Accept, Content-Type
169
+ X-Server-Time:
170
+ - '1486580338144'
171
+ Expires:
172
+ - Thu, 01 Jan 1970 00:00:00
173
+ Content-Type:
174
+ - application/json; charset=utf-8
175
+ Etag:
176
+ - W/"KbzdsXKNC1kvXSMs68oI0A=="
177
+ Vary:
178
+ - Accept-Encoding
179
+ Content-Encoding:
180
+ - gzip
181
+ Content-Length:
182
+ - '622'
183
+ Date:
184
+ - Wed, 08 Feb 2017 18:58:58 GMT
185
+ Connection:
186
+ - keep-alive
187
+ Set-Cookie:
188
+ - dsc=10c162711820413138fb18fffdbf237f57868b78a3999942df5a21b5349aa17e; Path=/;
189
+ Expires=Sat, 11 Feb 2017 18:58:58 GMT; Secure
190
+ body:
191
+ encoding: ASCII-8BIT
192
+ string: !binary |-
193
+ H4sIAAAAAAAAA+2TXWvbMBSG/4uvk1iSP2TnruvGKMsKo1vHVnqhj+PERLaCLSe0Jf99UmwnzihshhZ60Tudo3Oko/fVc/fk5dKbe1GSBJKIJISMZxTHIqFAKcfexBMrEOsrA8WNYQZqb142Stm00jXY1oypGiaetHsLVpsLYfJtbh7smQRhOkVkipLvOJmHwRxHM0Tj3/ZMCbWwFd3qIzOsPzaXHzSrTiNxHoYJSdOYh1RyICzyXNEir81p7BAJHJEYMUhSGhMsDzVfoeBQ1bfauDnv7l3uZqUr24jd+sIYJlYFlOZSb6HqJyhY2TB1SJ0qju+0VzMOyspwd5xQgEwIRmmWAeIsCT17VckKsANmWttZNtrWx1EURBOvdhMs8nJtd68/XYj1Dn22JZzJpRP3ydvqg8po4m1z2OXlsn1H94xujLrhtahyPkhlesmb5WMr69G09qRTeOlWrstldeHe1paw41vb2BlT5RuT6/JkcgO9SnZ5qYuNAgPd9v655FlPLg+3K+td3RvSmdSGqpf27Fc+I/B//pPOhGUFUDpRtNLVIG5qJzTe33eu/KiU3V0Zs6nnvm8qUErPrEi+8AdOPSN98+9GH0/dX9hPzoFLORMUBRHBIWUkDLIXBY7gGUnQWwCOvCZwwQA4zqoeOBxgRPE5cT9/XW/Q1fbbO3GjiAtGEvfgCNgNkDsmRjA38Gocc32jT6buO/zNnAjjKIMMBUxmWGYyfVnm0lmQRG+BueA1mYvPmHs8MpfGMaLnzAlDv6xTK+o7c2OYi0cyV4EcANdGI2gbuDSOtr7RD6buI+zv/wDKyBFPVAoAAA==
194
+ http_version:
195
+ recorded_at: Wed, 08 Feb 2017 18:59:08 GMT
196
+ recorded_with: VCR 3.0.3
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trellist
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chase Southard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-29 00:00:00.000000000 Z
11
+ date: 2017-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -179,6 +179,8 @@ files:
179
179
  - spec/use_aruba_with_rspec_spec.rb
180
180
  - spec/vcr_cassettes/client/get_board_lists_sets_client/lists.yml
181
181
  - spec/vcr_cassettes/client/get_list_cards_sets_client/cards.yml
182
+ - spec/vcr_cassettes/client/get_list_cards_with_a_label_argument_sets_client/cards_limited_by_card_label.yml
183
+ - spec/vcr_cassettes/client/get_list_cards_witout_a_label_argument_sets_client/cards.yml
182
184
  - trellist.gemspec
183
185
  homepage: https://github.com/chaserx/trellist
184
186
  licenses: