blob: 80c24383282cdc61994012da977a558b4017271f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require "resource"
module Language
  module Go
    # Given a set of resources, stages them to a gopath for
    # building go software.
    # The resource names should be the import name of the package,
    # e.g. `resource "github.com/foo/bar"`
    def self.stage_deps resources, target
      resources.grep(Resource::Go) { |resource| resource.stage(target) }
    end
  end
end
 |