class Pantry::Chef::SyncCookbooks::FileAndReceiverInfo
Attributes
name[R]
Public Class Methods
new(name, receiver_info)
click to toggle source
# File lib/pantry/chef/sync_cookbooks.rb, line 25 def initialize(name, receiver_info) @name = name @receiver_info = receiver_info end
Public Instance Methods
method_missing(*args, &block)
click to toggle source
# File lib/pantry/chef/sync_cookbooks.rb, line 30 def method_missing(*args, &block) @receiver_info.send(*args, &block) end