Sha256: 924671bab86364c49d1fe322d54fe601842e6c44fbc8f45f7c78e5df1178ebb4

Contents?: true

Size: 670 Bytes

Versions: 3

Compression:

Stored size: 670 Bytes

Contents

# 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 

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
storazzo-0.4.10 lib/storazzo/ric_disk_statsfile.rb
storazzo-0.4.9 lib/storazzo/ric_disk_statsfile.rb
storazzo-0.4.5 lib/storazzo/ric_disk_statsfile.rb