File: version.rb

package info (click to toggle)
sqlite3-ruby 1.2.4-2.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,076 kB
  • ctags: 1,140
  • sloc: ruby: 4,280; ansic: 2,318; makefile: 195
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  = 4

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

  end

end