class Crackin::Scm::Base

Public Class Methods

new(config={}) click to toggle source
# File lib/crackin/scm.rb, line 4
def initialize(config={})
  @options = {
      production: 'master',
      working: File.expand_path('.')
  }.merge(config)
end

Public Instance Methods

change_branch() click to toggle source
# File lib/crackin/scm.rb, line 15
def change_branch
  raise "not implemented"
end
commit(message) click to toggle source
# File lib/crackin/scm.rb, line 11
def commit(message)
  raise "not implemented"
end
push() click to toggle source
# File lib/crackin/scm.rb, line 19
def push
  raise "not implemented"
end
push_tags() click to toggle source
# File lib/crackin/scm.rb, line 27
def push_tags
  raise "not implemented"
end
tag() click to toggle source
# File lib/crackin/scm.rb, line 23
def tag
  raise "not implemented"
end