class Librarian::Puppet::Dsl::Receiver

Attributes

specfile[R]
working_path[R]

Public Instance Methods

metadata() click to toggle source

implement the ‘metadata’ syntax for Puppetfile

# File lib/librarian/puppet/dsl.rb, line 82
def metadata
  f = working_path.join('metadata.json')
  unless File.exist?(f)
    raise Error, "Metadata file does not exist: #{f}"
  end
  begin
    json = JSON.parse(File.read(f))
  rescue JSON::ParserError => e
    raise Error, "Unable to parse json file #{f}: #{e}"
  end
  dependencyList = json['dependencies']
  dependencyList.each do |d|
    mod(d['name'], d['version_requirement'])
  end
end
run(specfile = nil) click to toggle source

save the specfile and call librarian

Calls superclass method
# File lib/librarian/puppet/dsl.rb, line 75
def run(specfile = nil)
  @working_path = specfile.kind_of?(Pathname) ? specfile.parent : Pathname.new(Dir.pwd)
  @specfile = specfile
  super
end