crafterm / sprinkle

Sprinkle is a software provisioning tool you can use to build remote servers with. eg. to install a Rails, or Sinatra stack on a brand new slice directly after its been created

This URL has Read+Write access

sprinkle / lib / sprinkle / version.rb
100644 10 lines (8 sloc) 0.148 kb
1
2
3
4
5
6
7
8
9
10
module Sprinkle #:nodoc:
  module VERSION #:nodoc:
    MAJOR = 0
    MINOR = 2
    TINY = 6
 
    STRING = [MAJOR, MINOR, TINY].join('.')
  end
end