module TmfComponents

Public Class Methods

add(name) click to toggle source
# File lib/tmf_components.rb, line 4
def add(name)
  list << name
end
has?(name) click to toggle source
# File lib/tmf_components.rb, line 8
def has?(name)
  list.include?(name)
end
list() click to toggle source
# File lib/tmf_components.rb, line 12
def list
  @list ||= Set.new
end