class PomLoader::Tasks

Public Class Methods

install_tasks(opts = {}) click to toggle source
# File lib/pom-loader/tasks.rb, line 25
def install_tasks(opts = {})
  new.install
end

Public Instance Methods

install() click to toggle source
# File lib/pom-loader/tasks.rb, line 30
def install
  desc 'Generate and gather all of the files required for PomLoader'
  namespace :pom_loader do
    task :load do |t|
      PomLoader.load
    end
  end
end