class MoonRabbit::Makefiles

Public Class Methods

add( makefile ) click to toggle source
# File lib/moon_rabbit.rb, line 183
def self.add( makefile )
  @@makefiles.push makefile
end
clear() click to toggle source
# File lib/moon_rabbit.rb, line 201
def self.clear
  @@makefiles = []
end
each() { |makefile| ... } click to toggle source
# File lib/moon_rabbit.rb, line 191
def self.each
  @@makefiles.each{|makefile|
    yield( makefile )
  }
end
file_paths() click to toggle source
# File lib/moon_rabbit.rb, line 197
def self.file_paths
  @@makefiles.collect{|makefile| makefile.files[ :path ]}
end
makefiles() click to toggle source
# File lib/moon_rabbit.rb, line 187
def self.makefiles
  @@makefiles
end