aboutsummaryrefslogtreecommitdiff
path: root/bzr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bzr.rb')
-rw-r--r--bzr.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/bzr.rb b/bzr.rb
index 11b1b5a..618ca44 100644
--- a/bzr.rb
+++ b/bzr.rb
@@ -48,13 +48,6 @@ class VCS
}
ret
end
-
- def VCS.longhistory dir
- log = `#{BZRCMD} log -r -10.. "#{dir}"`.split("-"*60)
- log.collect!{|s| s.scan(/\nrevno: (.*)\ncommitter.*\n.*\ntimestamp: (.*)\nmessage:\n (.*)/).flatten}
- log.shift
- log.collect!{|r,t,c| [r.to_i,Time.parse(t),c]}
- end
def VCS.commit comment
tmpfile = "/tmp/commitcomment.#{rand(10000)}"