Sha256: 01ec290b0a2e5ddf7eb06fda9479c6b539d03499700550ee7de16b3d5190bcff

Contents?: true

Size: 650 Bytes

Versions: 44

Compression:

Stored size: 650 Bytes

Contents

class Pathname
  # Returns true or false if the path of the instantiated
  # Pathname or a parent directory contains a Tryhard Pack
  # data directory.
  #
  # @return [Boolean]
  def cookbook?
    self.join('metadata.rb').exist?
  end
  alias_method :chef_cookbook?, :cookbook?

  # Ascend the directory structure from the given path to find a
  # the root of a Chef Cookbook. If no Cookbook is found, nil is returned
  #
  # @return [Pathname, nil]
  def cookbook_root
    self.ascend do |potential_root|
      if potential_root.cookbook?
        return potential_root
      end
    end
  end
  alias_method :chef_cookbook_root, :cookbook_root
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
berkshelf-2.0.13 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.12 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.11 lib/berkshelf/core_ext/pathname.rb
berkshelf-3.0.0.beta4 lib/berkshelf/core_ext/pathname.rb
berkshelf-3.0.0.beta3 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.10 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.9 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.8 lib/berkshelf/core_ext/pathname.rb
berkshelf-3.0.0.beta2 lib/berkshelf/core_ext/pathname.rb
berkshelf-3.0.0.beta1 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.7 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.6 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.5 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.4 lib/berkshelf/core_ext/pathname.rb
berkshelf-1.4.6 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.3 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.1 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.0 lib/berkshelf/core_ext/pathname.rb
berkshelf-1.4.5 lib/berkshelf/core_ext/pathname.rb
berkshelf-2.0.0.beta lib/berkshelf/core_ext/pathname.rb