Class: Rake::InvocationChain::EmptyInvocationChain

Inherits:
Object
  • Object
show all
Defined in:
lib/rake/invocation_chain.rb

Instance Method Summary collapse

Instance Method Details

#append(value) ⇒ Object



41
42
43
# File 'lib/rake/invocation_chain.rb', line 41

def append(value)
  InvocationChain.new(value, self)
end

#member?(obj) ⇒ Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/rake/invocation_chain.rb', line 38

def member?(obj)
  false
end

#to_sObject



44
45
46
# File 'lib/rake/invocation_chain.rb', line 44

def to_s
  "TOP"
end