Sha256: bc43d83ed7d01c09086df6df876c06feb25ec060c13209328bfe2e913f5cd777
Contents?: true
Size: 516 Bytes
Versions: 78
Compression:
Stored size: 516 Bytes
Contents
require 'fog/core/collection' 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
78 entries across 78 versions & 7 rubygems