jamis / capistrano

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!

This URL has Read+Write access

capistrano / lib / capistrano / version.rb
100644 10 lines (8 sloc) 0.141 kb
1
2
3
4
5
6
7
8
9
10
module Capistrano
  module Version #:nodoc:
    MAJOR = 2
    MINOR = 4
    TINY = 0
 
    STRING = [MAJOR, MINOR, TINY].join(".")
  end
end