class Duracloud::Commands::ListContentIds

Public Instance Methods

call() click to toggle source
# File lib/duracloud/commands/list_content_ids.rb, line 4
def call
  Duracloud::Space.content_ids(space_id, store_id: store_id, prefix: prefix).each do |id|
    puts id
  end
end