tracks/vendor/plugins/rspec-rails/lib/spec/rails/version.rb

15 lines
259 B
Ruby
Raw Normal View History

2008-06-19 10:13:59 +02:00
module Spec
module Rails
module VERSION #:nodoc:
unless defined? MAJOR
MAJOR = 1
MINOR = 1
TINY = 8
2008-06-19 10:13:59 +02:00
STRING = [MAJOR, MINOR, TINY].join('.')
2008-06-19 10:13:59 +02:00
SUMMARY = "rspec-rails #{STRING}"
end
end
end
end