Method: Halite::HelperBase#install

Defined in:
lib/halite/helper_base.rb

#install

This method returns an undefined value.

Subclass hoook to provide the actual tasks or other helpers to install.

Examples:

def install
  extend Rake::DSL
  desc 'My awesome task'
  task 'mytask' do
    # ...
  end
end

Raises:

  • (NotImplementedError)

Since:

  • 1.0.0



78
79
80
# File 'lib/halite/helper_base.rb', line 78

def install
  raise NotImplementedError
end