Module: Rake

Defined in:
lib/nake/rake.rb

Class Method Summary collapse

Class Method Details

.const_missing(constant) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/nake/rake.rb', line 10

def self.const_missing(constant)
  raise NotImplementedError, "Nake doesn't support Rake::#{constant}, please use normal Rake"
end

.method_missingObject

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/nake/rake.rb', line 6

def self.method_missing
  raise NotImplementedError
end