module Rake
Constants
- RC_FILES
Public Class Methods
load_rakefile(path)
click to toggle source
# File lib/courtier/tweaks/rake.rb, line 20 def self.load_rakefile(path) case File.basename(path) when *RC_FILES # do nothing, RC will do it else load(path) end end