class Polisher::Git::Pkg

Git Based Package

Public Class Methods

fetch_tgts() click to toggle source
# File lib/polisher/git/pkg.rb, line 32
def self.fetch_tgts
  [fetch_tgt].flatten
end
new(args = {}) click to toggle source
Calls superclass method
# File lib/polisher/git/pkg.rb, line 36
def initialize(args = {})
  @name    = args[:name]
  @version = args[:version]
  super(args)
end