class GemOf::RakeTasks

a bunch of instances of other rake tasks @example create an instance of me in your rakefile

GemOf::RakeTasks.new

@api public

Public Class Methods

new() click to toggle source

instance a bunch of our component rake tasks @api public

# File lib/gem_of/rake_tasks.rb, line 19
def initialize
  task :default do
    sh %(rake -T)
  end
  GemTasks.new
  YardStickTasks.new
  DocsTasks.new
  LintTasks.new
  TestTasks.new
end