class Figs::Install
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/figs/install.rb, line 12 def initialize super @name = "figs" @rakefiles = [File.expand_path(File.join(File.dirname(__FILE__),'tasks/install.rake'))] end
Public Instance Methods
default_task_name()
click to toggle source
# File lib/figs/install.rb, line 24 def default_task_name "install" end
run()
click to toggle source
Calls superclass method
# File lib/figs/install.rb, line 19 def run Rake.application = self super end