merge upstream changes

This commit is contained in:
Reinier Balt 2008-06-19 10:13:59 +02:00
parent 4e890524f0
commit a095f8cb0e
9 changed files with 291 additions and 291 deletions

View file

@ -1,22 +1,22 @@
module Spec
module VERSION
unless defined? MAJOR
MAJOR = 1
MINOR = 1
TINY = 4
RELEASE_CANDIDATE = nil
BUILD_TIME_UTC = 20080615141040
STRING = [MAJOR, MINOR, TINY].join('.')
TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')} (build #{BUILD_TIME_UTC})"
NAME = "RSpec"
URL = "http://rspec.rubyforge.org/"
DESCRIPTION = "#{NAME}-#{FULL_VERSION} - BDD for Ruby\n#{URL}"
end
end
end
module Spec
module VERSION
unless defined? MAJOR
MAJOR = 1
MINOR = 1
TINY = 4
RELEASE_CANDIDATE = nil
BUILD_TIME_UTC = 20080615141040
STRING = [MAJOR, MINOR, TINY].join('.')
TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')} (build #{BUILD_TIME_UTC})"
NAME = "RSpec"
URL = "http://rspec.rubyforge.org/"
DESCRIPTION = "#{NAME}-#{FULL_VERSION} - BDD for Ruby\n#{URL}"
end
end
end