Skip to content

Commit

Permalink
reorder version the way I like it.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimweirich committed Oct 22, 2012
1 parent 6d2cbda commit ae57582
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions lib/rake/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
module Rake
VERSION = '0.9.3.dev'

module Version # :nodoc: all
MAJOR, MINOR, BUILD, PATCH = VERSION.split('.')
NUMBERS = [ MAJOR, MINOR, BUILD, PATCH ]
NUMBERS = [
MAJOR = 0,
MINOR = 9,
BUILD = 3,
'beta',
BETA = 1,
]
end
VERSION = Version::NUMBERS.join('.')
end

0 comments on commit ae57582

Please sign in to comment.