Version strings.
This commit is contained in:
parent
09e8b609b6
commit
e3fafb6e6d
2 changed files with 17 additions and 2 deletions
|
@ -207,3 +207,18 @@ module Mime
|
|||
LOOKUP["text/html"] = HTML
|
||||
LOOKUP["application/xhtml+xml"] = XHTML
|
||||
end
|
||||
|
||||
module Instiki
|
||||
module VERSION #:nodoc:
|
||||
MAJOR = 0
|
||||
MINOR = 12
|
||||
TINY = 0
|
||||
SUFFIX = '(MML+)'
|
||||
PRERELEASE = 'pre' # false
|
||||
if PRERELEASE
|
||||
STRING = [MAJOR, MINOR].join('.') + PRERELEASE + SUFFIX
|
||||
else
|
||||
STRING = [MAJOR, MINOR, TINY].join('.') + SUFFIX
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue