module GitReflow

Constants

VERSION

Public Instance Methods

git_server() click to toggle source
# File lib/git_reflow.rb, line 42
def git_server
  @git_server ||= GitServer.connect provider: GitReflow::Config.get('reflow.git-server').strip, silent: true
end
logger(*args) click to toggle source
# File lib/git_reflow.rb, line 34
def logger(*args)
  @logger ||= GitReflow::Logger.new(*args)
end
method_missing(method_sym, *arguments, &block) click to toggle source
Calls superclass method
# File lib/git_reflow.rb, line 50
def method_missing(method_sym, *arguments, &block)
  if workflow && workflow.respond_to?(method_sym, false)
    workflow.send method_sym, *arguments, &block
  else
    super
  end
end
respond_to_missing?(method_sym, include_all = false) click to toggle source
Calls superclass method
# File lib/git_reflow.rb, line 46
def respond_to_missing?(method_sym, include_all = false)
  (workflow && workflow.respond_to?(method_sym, include_all)) || super(method_sym, include_all)
end
workflow() click to toggle source
# File lib/git_reflow.rb, line 38
def workflow
  Workflow.current
end