class Duracloud::Commands::GetStorageReportForAllSpaces
Public Instance Methods
call()
click to toggle source
# File lib/duracloud/commands/get_storage_report_for_all_spaces.rb, line 4 def call Duracloud::StorageReports.for_all_spaces_in_a_store(store_id: store_id).each do |report| puts "-"*40 puts report.to_s end end