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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trello/board.rb +10 -0
  3. data/trello.gemspec +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c4115b382acede1d5c3c3632e6429e1a21803d97
4
- data.tar.gz: 947ff3608fc310106e2fbeb658cd7eea0235fc45
3
+ metadata.gz: 044dc20f911e89369cd2f30b2702a449600a0f8a
4
+ data.tar.gz: b4b18d1a1d5090768edcbe19a157d31ee98353c7
5
5
  SHA512:
6
- metadata.gz: 2df335cfc82ce75f62978185ea7b183169bb68e0a0a106fef1247f20589045f91a09c6ea1562af45f25021a40fd69d05e36ab583938747b8f9a6c2de32e65ef4
7
- data.tar.gz: c3b23106cd50ee87ce53ac9a892c57827becc761b80f7a62facb6caf0cf60a92e1ada2c6f515554d84f8a19af96056adc85dfb8e1470c69157c56fbd95680c43
6
+ metadata.gz: 70d754e79fdc9e55d2f2f44cbda789ad65115cff0cc1d681e560b3dd2d1c86d11b18fe72fe940fb74309752314fb766c8debe2fb6cbaa6b81bab01aff57cf805
7
+ data.tar.gz: 20ad2e413e9c1463d2562436bab92c28406437f204ab8acd528516821bcb3a2402614db9085e8027cfc158d49387d43cc38d60fa9f8e192106e1ad4bc9ec20ea
@@ -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]
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "trelloapi"
7
- spec.version = "0.1.2"
7
+ spec.version = "0.1.3"
8
8
  spec.authors = ["Canic Interactive"]
9
9
  spec.email = ["nenad.mucic@canicinteractive.com"]
10
10
 
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.2
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-08-29 00:00:00.000000000 Z
11
+ date: 2017-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel