Class: Factbase::Looged::Fact

Inherits:
Object
  • Object
show all
Defined in:
lib/factbase/looged.rb

Overview

Fact decorator.

This is an internal class, it is not supposed to be instantiated directly.

Constant Summary collapse

MAX_LENGTH =
64

Instance Method Summary collapse

Constructor Details

#initialize(fact, loog) ⇒ Fact



86
87
88
89
# File 'lib/factbase/looged.rb', line 86

def initialize(fact, loog)
  @fact = fact
  @loog = loog
end

Instance Method Details

#all_propertiesObject



95
96
97
# File 'lib/factbase/looged.rb', line 95

def all_properties
  @fact.all_properties
end

#to_sObject



91
92
93
# File 'lib/factbase/looged.rb', line 91

def to_s
  @fact.to_s
end