aboutsummaryrefslogblamecommitdiffstats
path: root/lib/refinery/blog/version.rb
blob: ff7cb3902570c883dd8e621e3014b679e4e64746 (plain) (tree)
1
2
3
4
5
6


                 

                
                










                                                   
module Refinery
  module Blog
    class Version
      @major = 2
      @minor = 0
      @tiny  = 1

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

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