Sha256: 66c92cd02f3831957354091dfecaa3fee4e473ca6f535711431c339972fe5552

Contents?: true

Size: 277 Bytes

Versions: 1

Compression:

Stored size: 277 Bytes

Contents

module BillysBilling
  class Version #:nodoc:
    @major = 1
    @minor = 1
    @tiny  = 1
    @build = nil

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
billysbilling-rails-1.1.1 lib/billys_billing/version.rb