Class InfoCube
In: infocube.rb
Parent: Object

Methods

count   new   reset  

Public Class methods

[Source]

# File infocube.rb, line 934
      def initialize
         @@count += 1
      end

Public Instance methods

[Source]

# File infocube.rb, line 940
      def count
         puts "from InfoCube checkout no: #{@@count}"
         return @@count
      end

[Source]

# File infocube.rb, line 937
      def reset
         @@count = -1
      end

[Validate]