GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
francois (author)
Fri May 09 07:30:21 -0700 2008
commit  50744c398a3e686abd5eb743a5e59ed67929c4ff
tree    bb103c21783ea1be2d799be187c7bbdadc7602a3
parent  1f33caa0eb2ab49783bcba64423255085f3b4c34
piston / lib / piston.rb
100644 17 lines (13 sloc) 0.402 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "piston/repository"
require "piston/revision"
require "piston/working_copy"
 
require "piston/git"
require "piston/svn"
 
require "pathname"
 
module Piston
  class << self
    def version_message
        "Piston %s\nCopyright 2006-2008, François Beausoleil <francois@teksol.info>\nhttp://piston.rubyforge.org/\nDistributed under an MIT-like license." % Piston::VERSION::STRING
    end
  end
end