module Tennpipes::Tasks

This module it's used for bootstrap with tennpipes rake third party tasks, in your gem/plugin/extension you need only do this:

@example

Tennpipes::Tasks.files << yourtask.rb
Tennpipes::Tasks.files.concat(Dir["/path/to/all/my/tasks/*.rb"])
Tennpipes::Tasks.files.unshift("yourtask.rb")

Public Class Methods

files() click to toggle source

Returns a list of files to handle with tennpipes rake

# File lib/tennpipes-base/tasks.rb, line 17
def self.files
  @files ||= []
end