changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/lib/spec/version.rb

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1module Spec
2 module VERSION
3 unless defined? MAJOR
4 MAJOR = 1
5 MINOR = 1
6 TINY = 3
7 RELEASE_CANDIDATE = nil
8
9 BUILD_TIME_UTC = 20080131122909
10
11 STRING = [MAJOR, MINOR, TINY].join('.')
12 TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
13 FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')} (build #{BUILD_TIME_UTC})"
14
15 NAME = "RSpec"
16 URL = "http://rspec.rubyforge.org/"
17
18 DESCRIPTION = "#{NAME}-#{FULL_VERSION} - BDD for Ruby\n#{URL}"
19 end
20 end
21end
22