Sha256: d2a095ad362082f158315c57f57f89d69e6a4ccd53769159c704f9a9fd0ec31f

Contents?: true

Size: 694 Bytes

Versions: 5

Compression:

Stored size: 694 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.
        #@@default_name
        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

5 entries across 5 versions & 1 rubygems

Version Path
storazzo-0.4.2 lib/storazzo/ric_disk_statsfile.rb
storazzo-0.4.1 lib/storazzo/ric_disk_statsfile.rb
storazzo-0.3.8 lib/storazzo/ric_disk_statsfile.rb
storazzo-0.3.7 lib/storazzo/ric_disk_statsfile.rb
storazzo-0.3.5 lib/storazzo/ric_disk_statsfile.rb