Sha256: 47e88c8665a2a79b3214ed312b023de92a756db95f262ecfb87b3af35cce7f17

Contents?: true

Size: 609 Bytes

Versions: 14

Compression:

Stored size: 609 Bytes

Contents

module Context
  module GitDeployerHelper
    def git_build(context)
      Dir.chdir File.dirname(context.context_folder)
      puts "Building ruby from folder #{context.context_folder}"
      git ["clone git@github.com:JimboDragonGit/#{context.context_name}.git"] unless ::Dir.exist?(context.context_folder)
    end

    def git_commit(context)
      Dir.chdir context.context_folder
      git ['add .']
      git ["commit -m 'Create #{context.context_name} automatic commit'"]
    end

    def git_release(context)
      Dir.chdir context.context_folder
      git ['push', '--follow-tags']
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
deploy-context-0.6.0.1.ge54bf72.1.g3590b37 lib/deploy-context/deploy/git.rb
deploy-context-0.6.0.1.ge54bf72 lib/deploy-context/deploy/git.rb
deploy-context-0.5.1.1.g528de70.1.g25eba10 lib/deploy-context/deploy/git.rb
deploy-context-0.5.1.1.g528de70 lib/deploy-context/deploy/git.rb
deploy-context-0.5.1 lib/deploy-context/deploy/git.rb
deploy-context-0.5.0.2.gd7dfe44.1.g11bfe44 lib/deploy-context/deploy/git.rb
deploy-context-0.5.0.2.gd7dfe44 lib/deploy-context/deploy/git.rb
deploy-context-0.5.0.1.ga4a42be lib/deploy-context/deploy/git.rb
deploy-context-0.4.0.1.g0f0d133 lib/deploy-context/deploy/git.rb
deploy-context-0.3.0.1.g8904331 lib/deploy-context/deploy/git.rb
deploy-context-0.2.0.1.g91ccda3 lib/deploy-context/deploy/git.rb
deploy-context-0.2.0 lib/deploy-context/deploy/git.rb
deploy-context-0.1.0.6.g43abfe4 lib/deploy-context/deploy/git.rb
deploy-context-0.1.0.5.gab62daf lib/deploy-context/deploy/git.rb