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



                 
                











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

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

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