blob: 08fa16803989561948bff1b3583581e4a39f46c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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)
opoo "tried to stage empty resources array" if resources.empty?
resources.grep(Resource::Go) { |resource| resource.stage(target) }
end
end
end
|