class FightClub::Config

Attributes

comment_check[RW]
master_branch[RW]
oauth[RW]
repo[RW]
repo_name[RW]
repos_directory[RW]
save_comment[RW]
uri[RW]

Public Class Methods

new() click to toggle source
# File lib/fight_club/config.rb, line 7
def initialize
  @repo = 'baxterthehacker/public-repo'
  @oauth = 'Not set'
  @repo_name = 'public-repo'
  @uri = 'git@github.com:baxterthehacker/public-repo.git'
  @master_branch = 'master'
  @repos_directory = '/tmp'
  @comment_check = Proc.new { |pr, comment| false }
  @save_comment = Proc.new { |pr, comment| false }
end