Class: PoiseBoiler::Helpers::Rake

Inherits:
Halite::HelperBase
  • Object
show all
Defined in:
lib/poise_boiler/helpers/rake.rb,
lib/poise_boiler/helpers/rake/core.rb,
lib/poise_boiler/helpers/rake/badges.rb,
lib/poise_boiler/helpers/rake/travis.rb

Overview

Helper for a Rakefile to install common tasks for the Poise workflow.

See Also:

Since:

  • 1.0.0

Defined Under Namespace

Classes: Badges, Core, Travis

Instance Method Summary collapse

Instance Method Details

#install(*args) ⇒ void

This method returns an undefined value.

Install all rake tasks.

Since:

  • 1.0.0



36
37
38
39
40
# File 'lib/poise_boiler/helpers/rake.rb', line 36

def install(*args)
  Core.install(*args)
  Badges.install(*args)
  Travis.install(*args)
end