class PairingMatrix::CommitReader
Public Class Methods
new(config)
click to toggle source
# File lib/pairing_matrix/commit_readers/commit_reader.rb, line 5 def initialize(config) @config = config end
Public Instance Methods
Protected Instance Methods
read(since)
click to toggle source
# File lib/pairing_matrix/commit_readers/commit_reader.rb, line 21 def read(since) #to be implemented by child commit reader end
Private Instance Methods
titleize(name)
click to toggle source
# File lib/pairing_matrix/commit_readers/commit_reader.rb, line 33 def titleize(name) name.gsub(/\w+/) do |word| word.capitalize end end