Method: Puppet::Module#license_file
- Defined in:
- lib/puppet/module.rb
#license_file ⇒ Object
208 209 210 211 212 213 |
# File 'lib/puppet/module.rb', line 208 def license_file return @license_file if defined?(@license_file) return @license_file = nil unless path @license_file = File.join(path, "License") end |