blob: 122c45101ef7a6ceaae21a7f079003263d01cbe7 (
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 = 3
TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
SUMMARY = "rspec #{STRING}"
end
end
end
|