class TMBundle::BundlesList

Public Instance Methods

all() click to toggle source
# File lib/tmbundle.rb, line 173
def all
  @all ||= Dir[dir.join('*/.git').to_s].map do |path|
    Bundle.new(Pathname(path).join('..').to_s)
  end
end