Skip to content

Commit 65a7a23

Browse files
author
Robert Mitwicki
committed
Merge pull request #16 from rubycas/version
bring version module in line with typical ruby version layouts and
2 parents 771e576 + 8051e27 commit 65a7a23

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

lib/rubycas-server-core/version.rb

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
module Rubycas
1+
module RubyCAS
22
module Server
33
module Core
4-
VERSION = "0.0.1"
4+
module Version # :nodoc: all
5+
6+
MAJOR = 0
7+
MINOR = 1
8+
PATCH = 0
9+
TAG = 'alpha'
10+
11+
STRING = [MAJOR, MINOR, PATCH, TAG].join('.')
12+
end
513
end
614
end
715
end

rubycas-server-core.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ require 'rubycas-server-core/version'
55

66
Gem::Specification.new do |gem|
77
gem.name = "rubycas-server-core"
8-
gem.version = Rubycas::Server::Core::VERSION
9-
gem.authors = ["Robert Mitwicki"]
10-
gem.email = ["[email protected]"]
8+
gem.version = RubyCAS::Server::Core::Version::STRING
9+
gem.authors = ["Robert Mitwicki", 'Tyler Pickett']
10+
1111
gem.description = %q{The core logic for handling CAS requests independent of any web presentation technology.}
1212
gem.summary = %q{The core logic for handling CAS requests.}
1313
gem.homepage = "http://rubycas.github.com"

0 commit comments

Comments
 (0)