[Source]
# File lib/uttk/strategies/Strategy.rb, line 24 def initialize ( name, desc, *a, &b ) my, our = a.partition { |x| x == :dont_expand } @expand = my.empty? initialize_without_expand(name, desc, *our, &b) end
# File lib/uttk/strategies/Strategy.rb, line 30 def expand? @expand end
[Validate]