Sha256: 5b0d906f9f8612333a6d432ad39c285ea9fddd89d34acea41cd30bdda53ce595

Contents?: true

Size: 415 Bytes

Versions: 10

Compression:

Stored size: 415 Bytes

Contents

require "erb"
require "yaml"

require "figs/error"
require 'rake'



module Figs
  class Install < Rake::Application
    
    def initialize
      super
      
      @name = "figs"
      @rakefiles = [File.expand_path(File.join(File.dirname(__FILE__),'tasks/install.rake'))]
    end
    
    def run
      Rake.application = self
      super
    end
    
    def default_task_name
      "install"
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
figs-3.0.0 lib/figs/install.rb
figs-2.1.1 lib/figs/install.rb
figs-2.0.4 lib/figs/install.rb
figs-2.0.3 lib/figs/install.rb
figs-2.0.2 lib/figs/install.rb
figs-2.0.1 lib/figs/install.rb
figs-2.0.0 lib/figs/install.rb
figs-1.2.3 lib/figs/install.rb
figs-1.2.2 lib/figs/install.rb
figs-1.2.1 lib/figs/install.rb