hicknhack-software/rails-disco

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

Summary

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

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