Class: Halite::Gem
- Inherits:
-
Object
- Object
- Halite::Gem
- Defined in:
- lib/halite/gem.rb
Overview
A model for a gem/cookbook within Halite.
Instance Attribute Summary collapse
- #name ⇒ Object readonly
Instance Method Summary collapse
-
#as_cookbook_version ⇒ Chef::CookbookVersion
Create a Chef::CookbookVersion object that represents this gem.
- #cookbook_dependencies ⇒ Object
- #cookbook_name ⇒ Object
-
#cookbook_version ⇒ String
Version of the gem sanitized for Chef.
-
#each_file(prefix_paths = nil, &block) ⇒ Array<Array<String>>
Iterate over all the files in the gem, with an optional prefix.
-
#each_library_file(&block) ⇒ Array<Array<String>>
Special case of the #each_file the gem's require paths.
-
#find_misc_path(name) ⇒ String+
Search for a file like README.md or LICENSE.txt in the gem.
-
#initialize(name, version = nil) ⇒ Gem
constructor
name can be either a string name, Gem::Dependency, or Gem::Specification.
-
#is_halite_cookbook? ⇒ Boolean
Is this gem really a cookbook? (anything that depends directly on halite and doesn't have the ignore flag).
- #license_header ⇒ Object
- #spec ⇒ Object
-
#spec_file ⇒ String
Path to the .gemspec for this gem.
- #version ⇒ Object
Constructor Details
#initialize(name, version = nil) ⇒ Gem
name can be either a string name, Gem::Dependency, or Gem::Specification
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/halite/gem.rb', line 35 def initialize(name, version=nil) # Allow passing a Dependency by just grabbing its spec. name = dependency_to_spec(name) if name.is_a?(::Gem::Dependency) if name.is_a?(::Gem::Specification) raise Error.new("Cannot pass version when using an explicit specficiation") if version @spec = name @name = spec.name else @name = name @version = version raise Error.new("Gem #{name}#{version ? " v#{version}" : ''} not found") unless spec end end |
Instance Attribute Details
#name ⇒ Object (readonly)
31 32 33 |
# File 'lib/halite/gem.rb', line 31 def name @name end |
Instance Method Details
#as_cookbook_version ⇒ Chef::CookbookVersion
Create a Chef::CookbookVersion object that represents this gem. This can be injected in to Chef to simulate the cookbook being available.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/halite/gem.rb', line 146 def as_cookbook_version # Put this in a local variable for a closure below. path = spec.full_gem_path Chef::CookbookVersion.new(cookbook_name, File.join(path, 'chef')).tap do |c| c.attribute_filenames = each_file('chef/attributes').map(&:first) c.file_filenames = each_file('chef/files').map(&:first) c.recipe_filenames = each_file('chef/recipes').map(&:first) c.template_filenames = each_file('chef/templates').map(&:first) # Haxx, rewire the filevendor for this cookbook to look up in our folder. # This is touching two different internal interfaces, but ¯\_(ツ)_/¯ c.send(:file_vendor).define_singleton_method(:get_filename) do |filename| File.join(path, 'chef', filename) end # Store the true root for use in other tools. c.define_singleton_method(:halite_root) { path } end end |
#cookbook_dependencies ⇒ Object
131 132 133 |
# File 'lib/halite/gem.rb', line 131 def cookbook_dependencies @cookbook_dependencies ||= Dependencies.extract(spec) end |
#cookbook_name ⇒ Object
57 58 59 60 61 62 63 |
# File 'lib/halite/gem.rb', line 57 def cookbook_name if spec..include?('halite_name') spec.['halite_name'] else spec.name.gsub(/(^(chef|cookbook)[_-])|([_-](chef|cookbook))$/, '') end end |
#cookbook_version ⇒ String
Version of the gem sanitized for Chef. This means no non-numeric tags and only three numeric components.
69 70 71 72 73 74 75 |
# File 'lib/halite/gem.rb', line 69 def cookbook_version if match = version.match(/^(\d+\.\d+\.(\d+)?)/) match[1] else raise Halite::Error.new("Unable to parse #{version.inspect} as a Chef cookbook version") end end |
#each_file(prefix_paths = nil, &block) ⇒ Array<Array<String>>
Iterate over all the files in the gem, with an optional prefix. Each element in the iterable will be [full_path, relative_path], where relative_path is relative to the prefix or gem path.
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/halite/gem.rb', line 102 def each_file(prefix_paths=nil, &block) globs = if prefix_paths Array(prefix_paths).map {|path| File.join(spec.full_gem_path, path) } else [spec.full_gem_path] end [].tap do |files| globs.each do |glob| Dir[File.join(glob, '**', '*')].each do |path| next unless File.file?(path) val = [path, path[glob.length+1..-1]] block.call(*val) if block files << val end end # Make sure the order is stable for my tests. Probably overkill, I think # Dir#[] sorts already. files.sort! end end |
#each_library_file(&block) ⇒ Array<Array<String>>
Special case of the #each_file the gem's require paths.
127 128 129 |
# File 'lib/halite/gem.rb', line 127 def each_library_file(&block) each_file(spec.require_paths, &block) end |
#find_misc_path(name) ⇒ String+
Search for a file like README.md or LICENSE.txt in the gem.
170 171 172 173 174 175 176 177 178 179 |
# File 'lib/halite/gem.rb', line 170 def find_misc_path(name) [name, name.upcase, name.downcase].each do |base| ['.md', '', '.txt', '.html'].each do |suffix| path = File.join(spec.full_gem_path, base+suffix) return path if File.exist?(path) && Dir.entries(File.dirname(path)).include?(File.basename(path)) end end # Didn't find anything nil end |
#is_halite_cookbook? ⇒ Boolean
Is this gem really a cookbook? (anything that depends directly on halite and doesn't have the ignore flag)
136 137 138 |
# File 'lib/halite/gem.rb', line 136 def is_halite_cookbook? spec.dependencies.any? {|subdep| subdep.name == 'halite'} && !spec..include?('halite_ignore') end |
#license_header ⇒ Object
87 88 89 |
# File 'lib/halite/gem.rb', line 87 def license_header IO.readlines(spec_file).take_while { |line| line.strip.empty? || line.strip.start_with?('#') }.join('') end |
#spec ⇒ Object
49 50 51 |
# File 'lib/halite/gem.rb', line 49 def spec @spec ||= dependency_to_spec(::Gem::Dependency.new(@name, ::Gem::Requirement.new(@version))) end |
#spec_file ⇒ String
Path to the .gemspec for this gem. This is different from Gem::Specification#spec_file because the Rubygems API is shit and just assumes the file layout matches normal, which is not the case with Bundler and path or git sources.
83 84 85 |
# File 'lib/halite/gem.rb', line 83 def spec_file File.join(spec.full_gem_path, spec.name + '.gemspec') end |
#version ⇒ Object
53 54 55 |
# File 'lib/halite/gem.rb', line 53 def version spec.version.to_s end |