class TcravitRubyLib::RakeTasks

Load and install rake tasks defined within the TcravitRubyLib library.

This module is designed to be require'd by a Rakefile, and will load and install all of the Rake tasks contained within the library.

Public Instance Methods

install_tasks() click to toggle source
# File lib/tcravit_ruby_lib/rake_tasks.rb, line 33
def install_tasks
  Dir["#{File.join(File.dirname(__FILE__), 'tasks')}/**/*.rake"].each do |f|
    load f
  end
end