module ForemanInventoryUpload::Async::AsyncHelpers
Public Instance Methods
hash_to_s(hash)
click to toggle source
# File lib/foreman_inventory_upload/async/async_helpers.rb, line 6 def hash_to_s(hash) hash.each_with_object({}) do |(k, v), a| a[k.to_s] = v.to_s end end