Sha256: 163b175398303edc2960888cd766c7a8ad87d3ea4e09540bf3721fe5613c56fd
Contents?: true
Size: 267 Bytes
Versions: 95
Compression:
Stored size: 267 Bytes
Contents
module RockRMS class Client module Block def list_blocks(options = {}) res = get(block_path, options) Response::Block.format(res) end def block_path(id = nil) id ? "Blocks/#{id}" : 'Blocks' end end end end
Version data entries
95 entries across 95 versions & 1 rubygems