Class: Figs::Install

Inherits:
Rake::Application
  • Object
show all
Defined in:
lib/figs/install.rb

Instance Method Summary collapse

Constructor Details

#initializeInstall

Returns a new instance of Install.



12
13
14
15
16
17
# 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

Instance Method Details

#default_task_nameObject



24
25
26
# File 'lib/figs/install.rb', line 24

def default_task_name
  "install"
end

#runObject



19
20
21
22
# File 'lib/figs/install.rb', line 19

def run
  Rake.application = self
  super
end