File: version.rb

package info (click to toggle)
ruby-em-mongo 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 340 kB
  • sloc: ruby: 2,960; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 240 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
module EventMachine
  module Mongo

    VERSION = File.read(File.expand_path('../../../VERSION',__FILE__)).strip

    module Version
      STRING = EventMachine::Mongo::VERSION
      MAJOR, MINOR, TINY = STRING.split('.')
    end
  end
end