webmat / git_remote_branch

A tool to simplify working with remote branches

git_remote_branch / lib / version.rb
100644 15 lines (12 sloc) 0.336 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module GitRemoteBranch
  module VERSION #:nodoc:
    MAJOR = 0
    MINOR = 3
    TINY = 0
    
    STRING = [MAJOR, MINOR, TINY].join('.').freeze
  end
  
  NAME = 'git_remote_branch'.freeze
  COMPLETE_NAME = "#{NAME} #{VERSION::STRING}".freeze
  COMMAND_NAME = 'grb'.freeze
  SHORT_NAME = COMMAND_NAME
end