dchelimsky / rspec

Behaviour Driven Development framework for Ruby

This URL has Read+Write access

rspec / lib / spec / version.rb
100644 13 lines (11 sloc) 0.213 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
module Spec
  module VERSION
    unless defined? MAJOR
      MAJOR = 1
      MINOR = 1
      TINY = 4
 
      STRING = [MAJOR, MINOR, TINY].join('.')
 
      SUMMARY = "rspec version #{STRING}"
    end
  end
end