Sha256: 5fafb2127d4eb0fa7502be17450a613637cea3df6f1cd99e11a23a72ec08e443
Contents?: true
Size: 501 Bytes
Versions: 7
Compression:
Stored size: 501 Bytes
Contents
# encoding: utf-8 require "filelist" # rake is distributed with Ruby 1.9 anyway module Rake def self.method_missing raise NotImplementedError end def self.const_missing(constant) raise NotImplementedError, "Nake doesn't support Rake::#{constant}, please use normal Rake" end end module Nake module RakeDSL def task end def file end def rule end def multitask raise NotImplementedError, "Multitask method won't be supported" end end end
Version data entries
7 entries across 7 versions & 1 rubygems