hicknhack-software/rails-disco

View on GitHub
active_domain/lib/active_domain/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ActiveDomain
  # Returns the version of the currently loaded ActiveDomain as a Gem::Version
  def self.version
    Gem::Version.new '0.5.3'
  end

  module VERSION #:nodoc:
    MAJOR, MINOR, TINY, PRE = ActiveDomain.version.segments
    STRING = ActiveDomain.version.to_s
  end
end