Skip to content

Instantly share code, notes, and snippets.

View srushti's full-sized avatar

Srushti Ambekallu srushti

View GitHub Profile
class PhysicalStorageVolume
OS_VERSION = RbConfig::CONFIG['host_os']
def initialize(path)
@path = path
@path_exists = File.exists?(path)
end
def self.error_raising_method(name)
define_method(name) do |*args|