Term.generate_cache()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 3
rs 10
1
require 'prop_logic'
2
3
# monkey-patching cache generation
4
class PropLogic::Term
5
  def self.generate_cache
6
    {}
7
  end
8
end
9