Sha256: d2305222a83013a78910a5447fa5fc8533537dc0c413cd17e2256b01f4f56499

Contents?: true

Size: 191 Bytes

Versions: 1

Compression:

Stored size: 191 Bytes

Contents

class IterationList
  def initialize(path)
    @path = path
  end
  
  def iterations
    GitTagLister.new(@path).tags.select do |tag|
      /iteration-\d*/.match(tag)
    end.size
  end 
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sensei-0.0.1 lib/sensei/iteration_list.rb