Sha256: 988fd2ce518102fac403ef576456f00c41e80909af8ea9ce0087e3928c9fcc43
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
namespace :git do task :anon do sh 'git config remote.origin.url git://github.com/Ramaze/ramaze' puts "You're now accessing ramaze anonymous" end task :committer do sh 'git config remote.origin.url git@github.com:Ramaze/ramaze' puts "You're now accessing ramaze as committer" end desc 'Update from repository' task :update do puts "Putting your changes on stash" sh 'git stash' branch = `git branch`[/^\*\s+(.*)/, 1] puts "Current branch is #{branch}" if switch = branch != 'master' puts "Switching to master branch" sh 'git checkout master' end if switch puts "Switching to #{branch} branch" sh "git checkout '#{branch}'" end sh 'git stash apply' end desc 'Create patch files to send' task :send do sh 'git format-patch ^HEAD' end desc "show some stats about patches" task :patchflow do patches = `git rev-list HEAD | wc -l`.to_i puts "currently we have #{patches} patches" init = Time.parse("Sat Oct 14 04:22:49 JST 2006") days = (Time.now - init) / (3600 * 24) puts "%d days since init, avg %4.2f patches per day" % [days, patches/days] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ramaze-2011.01.30 | tasks/git.rake |
ramaze-2011.01 | tasks/git.rake |