File Manager

Path: /opt/cpanel/ea-ruby27/root/usr/local/share/gems/gems/irb-1.18.0/lib/irb/helper_method/

Viewing File: base.rb

require "singleton"

module IRB
  module HelperMethod
    class Base
      include Singleton

      class << self
        def description(description = nil)
          @description = description if description
          @description
        end
      end
    end
  end
end