public
Description: Remote multi-server automation tool. This repository is no longer being actively maintained. Please ask on the mailing list to find someone who has a well-maintained fork. Thanks!
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
capistrano / lib / capistrano / version.rb
100644 10 lines (8 sloc) 0.143 kb
1
2
3
4
5
6
7
8
9
10
module Capistrano
  module Version #:nodoc:
    MAJOR = 2
    MINOR = 3
    TINY = 101
 
    STRING = [MAJOR, MINOR, TINY].join(".")
  end
end