Term   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %
Metric Value
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A generate_cache() 0 3 1
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