Sha256: 7cf79f613e2c8ff24d076b4394dd271344933f847432ff177c97e65ec85c8b8a

Contents?: true

Size: 276 Bytes

Versions: 1

Compression:

Stored size: 276 Bytes

Contents

require 'git'

module Bootcamp
  
  # The Armory is where the repo will be held
  class Armory
    
    attr_accessor :git
    
    def initialize
      @git = Git.init
    end
    
    def checkin
      @git.add('.')
      @git.commit('First Commit')
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootcamp-0.1.0 lib/bootcamp/armory.rb