File: version.rb

package info (click to toggle)
sqlite3-ruby 1.2.2-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,012 kB
  • ctags: 1,054
  • sloc: ruby: 4,252; ansic: 2,312; makefile: 61; sh: 12
file content (14 lines) | stat: -rw-r--r-- 153 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module SQLite3

  module Version

    MAJOR = 1
    MINOR = 2
    TINY  = 2

    STRING = [ MAJOR, MINOR, TINY ].join( "." )
    #:beta-tag:

  end

end