Sha256: 4c996f9a68c58008febb74132b2f31723b2bb9d8d9371a83fbdd0aa084eaf809
Contents?: true
Size: 482 Bytes
Versions: 23
Compression:
Stored size: 482 Bytes
Contents
require "fog/brightbox/models/compute/application" module Fog module Brightbox class Compute class Applications < Fog::Collection model Fog::Brightbox::Compute::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
23 entries across 23 versions & 1 rubygems