Sha256: 0afbe9307d3adbc16caf535c1b46c7085f167d72a0c2760814a3af8e3be33282
Contents?: true
Size: 447 Bytes
Versions: 64
Compression:
Stored size: 447 Bytes
Contents
require 'fog/core/collection' require 'fog/digitalocean/models/compute/image' module Fog module Compute class DigitalOcean class Images < Fog::Collection model Fog::Compute::DigitalOcean::Image def all load service.list_images.body['images'] end def get(id) all.find { |f| f.id == id } rescue Fog::Errors::NotFound nil end end end end end
Version data entries
64 entries across 64 versions & 5 rubygems