class Gistory::Configuration

Attributes

all_branches[W]
gem_name[RW]
max_fetched_commits[RW]
output_commit_hashes_only[W]

Public Class Methods

new() click to toggle source
# File lib/gistory/configuration.rb, line 8
def initialize
  @max_fetched_commits = 100
  @all_branches = false
  @output_commit_hashes_only = false
end

Public Instance Methods

all_branches?() click to toggle source
# File lib/gistory/configuration.rb, line 14
def all_branches?
  @all_branches
end
output_commit_hashes_only?() click to toggle source
# File lib/gistory/configuration.rb, line 18
def output_commit_hashes_only?
  @output_commit_hashes_only
end