Sha256: 69eaa3d4abc0ea5c9458c136430320ec41e45896fbeaef1c9f0547e0d64f7c0b
Contents?: true
Size: 482 Bytes
Versions: 16
Compression:
Stored size: 482 Bytes
Contents
require "fog/brightbox/models/compute/application" module Fog module Compute class Brightbox class Applications < Fog::Collection model Fog::Compute::Brightbox::Application def all data = service.list_applications load(data) end def get(identifier) data = service.get_application(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
16 entries across 14 versions & 3 rubygems