class CookbookOmnifetch::GithubLocation

Public Class Methods

new(dependency, options = {}) click to toggle source
Calls superclass method CookbookOmnifetch::GitLocation::new
# File lib/cookbook-omnifetch/github.rb, line 3
def initialize(dependency, options = {})
  options[:git] = "git://github.com/#{options.delete(:github)}.git"
  super
end