trelloapi 0.1.2 → 0.1.3
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/lib/trello/board.rb +10 -0
- data/trello.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 044dc20f911e89369cd2f30b2702a449600a0f8a
|
4
|
+
data.tar.gz: b4b18d1a1d5090768edcbe19a157d31ee98353c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70d754e79fdc9e55d2f2f44cbda789ad65115cff0cc1d681e560b3dd2d1c86d11b18fe72fe940fb74309752314fb766c8debe2fb6cbaa6b81bab01aff57cf805
|
7
|
+
data.tar.gz: 20ad2e413e9c1463d2562436bab92c28406437f204ab8acd528516821bcb3a2402614db9085e8027cfc158d49387d43cc38d60fa9f8e192106e1ad4bc9ec20ea
|
data/lib/trello/board.rb
CHANGED
@@ -154,9 +154,19 @@ module Trello
|
|
154
154
|
# :filter => [ :none, :normal, :owners, :all ] # default :all
|
155
155
|
many :members, filter: :all
|
156
156
|
|
157
|
+
# Returns a list of checklists associated with the board.
|
158
|
+
#
|
159
|
+
# The options hash may have a filter key which can have its value set as any
|
160
|
+
# of the following values:
|
161
|
+
# :filter => [ :none, :all ] # default :all
|
162
|
+
many :checklists, filter: :all
|
163
|
+
|
157
164
|
# Returns a reference to the organization this board belongs to.
|
158
165
|
one :organization, path: :organizations, using: :organization_id
|
159
166
|
|
167
|
+
# Returns a list of plugins associated with the board
|
168
|
+
many :plugin_data, path: "pluginData"
|
169
|
+
|
160
170
|
def labels(params = {})
|
161
171
|
# Set the limit to as high as possible given there is no pagination in this API.
|
162
172
|
params[:limit] = 1000 unless params[:limit]
|
data/trello.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trelloapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Canic Interactive
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|