aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/plugins/rspec/lib/spec/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/plugins/rspec/lib/spec/version.rb')
-rw-r--r--vendor/plugins/rspec/lib/spec/version.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/plugins/rspec/lib/spec/version.rb b/vendor/plugins/rspec/lib/spec/version.rb
new file mode 100644
index 000000000..5b1db9b37
--- /dev/null
+++ b/vendor/plugins/rspec/lib/spec/version.rb
@@ -0,0 +1,23 @@
+module Spec
+ module VERSION
+ unless defined? MAJOR
+ MAJOR = 1
+ MINOR = 0
+ TINY = 8
+ RELEASE_CANDIDATE = nil
+
+ # RANDOM_TOKEN: 0.510454315029681
+ REV = "$LastChangedRevision: 2338 $".match(/LastChangedRevision: (\d+)/)[1]
+
+ 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('.')} (r#{REV})"
+
+ NAME = "RSpec"
+ URL = "http://rspec.rubyforge.org/"
+
+ DESCRIPTION = "#{NAME}-#{FULL_VERSION} - BDD for Ruby\n#{URL}"
+ end
+ end
+end
+