# This class wraps the RDS file: we're going to write this RDS file # directly in the disk: /mount/ module Storazzo class Storazzo::RicDiskStatsFile # Please keep these two in sync, until you fix them and DRY the behaviour. DefaultName = "ricdisk_stats_v11.rds" # => RicDiskStatsFile Version = "1.1" # @@version # AttrAccessor for class - thanks StackOverflow from Android since Im in roaming :) class << self attr_accessor :default_name, :version end public def self.default_name DefaultName end def self.version Version end end end