blob: b1088cd69ff4900f71e5a4d3290c00f737771454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module Spec # :nodoc:
module VERSION # :nodoc:
unless defined? MAJOR
MAJOR = 1
MINOR = 2
TINY = 9
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
SUMMARY = "rspec #{STRING}"
end
end
end
|