Sha256: 7655b3a92e5e473d7d1c01f75b1cf43ba4dd61e824f65ce78c99bb89222dc699
Contents?: true
Size: 1.67 KB
Versions: 7
Compression:
Stored size: 1.67 KB
Contents
module MotherBrain class CookbookMetadata < ::Ridley::Chef::Cookbook::Metadata RUBY_FILENAME = 'metadata.rb'.freeze JSON_FILENAME = 'metadata.json'.freeze class << self # @return [Cookbook::Metadata] def load(&block) klass = new() klass.instance_eval(&block) if block_given? klass end # @param [#to_s] filepath # # @return [Cookbook::Metadata] def from_file(filepath) filepath = filepath.to_s if File.extname(filepath) =~ /\.json/ from_json_file(filepath) else from_ruby_file(filepath) end end # @param [#to_s] path # # @return [Cookbook::Metadata] def from_path(path) ruby_file = File.join(path, RUBY_FILENAME) json_file = File.join(path, JSON_FILENAME) metadata_file = File.exists?(json_file) ? json_file : ruby_file from_file(metadata_file) end private def from_ruby_file(filepath) load { eval(File.read(filepath), binding, filepath, 1) } end def from_json_file(filepath) load { from_json(File.read(filepath)) } end end # @param [Cookbook::Metadata] def initialize(&block) super begin self.instance_eval(&block) if block_given? rescue => e raise MotherBrain::InvalidCookbookMetadata, e end end # Override the default version with [Semverse::Version] # # @return [Semverse::Version] def version(data = nil) @version = data.nil? ? @version : Semverse::Version.new(data) end private def method_missing(*args); nil end end end
Version data entries
7 entries across 7 versions & 1 rubygems