Sha256: 9b1d034a0322e5d71cdb28707c5424866aee9a2e8cc160c027fdcba437728941
Contents?: true
Size: 1009 Bytes
Versions: 2
Compression:
Stored size: 1009 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}" if ::Dir.exist?(context.context_folder) git_pull(context) else git ["clone git@github.com:JimboDragonGit/#{context.context_name}.git"] unless ::Dir.exist?(context.context_folder) end end def git_pull(context) Dir.chdir context.context_folder git ['pull'] 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 def git_bump(context, level) Dir.chdir context.context_folder git ['version-bump', level] end def patch_reset(context) git_bump(context, 'minor') git_commit(context) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
deploy-context-0.11.42 | lib/deploy-context/deploy/git.rb |
deploy-context-0.11.41 | lib/deploy-context/deploy/git.rb |