aboutsummaryrefslogtreecommitdiffstats
path: root/lib/refinery/blog/version.rb
blob: 45511ad77f6ad551f6f155b542d42191ab32456a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Refinery
  module Blog
    class Version
      @major = 2
      @minor = 0
      @tiny  = 2

      class << self
        attr_reader :major, :minor, :tiny

        def to_s
          [@major, @minor, @tiny].compact.join('.')
        end
      end
    end
  end
end