Class: R10K::Puppetfile::DSL

Inherits:
Object
  • Object
show all
Defined in:
lib/r10k/puppetfile.rb

Instance Method Summary collapse

Constructor Details

#initialize(librarian) ⇒ DSL

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

A barebones implementation of the Puppetfile DSL



110
111
112
# File 'lib/r10k/puppetfile.rb', line 110

def initialize(librarian)
  @librarian = librarian
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args) ⇒ Object

Raises:

  • (NoMethodError)


126
127
128
# File 'lib/r10k/puppetfile.rb', line 126

def method_missing(method, *args)
  raise NoMethodError, "unrecognized declaration '#{method}'"
end

Instance Method Details

#forge(location) ⇒ Object



118
119
120
# File 'lib/r10k/puppetfile.rb', line 118

def forge(location)
  @librarian.set_forge(location)
end

#mod(name, args = []) ⇒ Object



114
115
116
# File 'lib/r10k/puppetfile.rb', line 114

def mod(name, args = [])
  @librarian.add_module(name, args)
end

#moduledir(location) ⇒ Object



122
123
124
# File 'lib/r10k/puppetfile.rb', line 122

def moduledir(location)
  @librarian.set_moduledir(location)
end