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
commit  17aed9c775f195a8a3f81e70efa00de56ae431ba
tree    e69fc0633d08bcc3a413e8501961dc3bcea13667
parent  3c3081efed8831032da579a9d443432796f8cc4e
piston / lib / piston.rb
100644 19 lines (14 sloc) 0.443 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "subclass_responsibility_error"
 
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