diff --git a/lib/rubycas-server-core/version.rb b/lib/rubycas-server-core/version.rb index 06f6561..59bff30 100644 --- a/lib/rubycas-server-core/version.rb +++ b/lib/rubycas-server-core/version.rb @@ -1,7 +1,15 @@ -module Rubycas +module RubyCAS module Server module Core - VERSION = "0.0.1" + module Version # :nodoc: all + + MAJOR = 0 + MINOR = 1 + PATCH = 0 + TAG = 'alpha' + + STRING = [MAJOR, MINOR, PATCH, TAG].join('.') + end end end end diff --git a/rubycas-server-core.gemspec b/rubycas-server-core.gemspec index d44db28..033fe05 100644 --- a/rubycas-server-core.gemspec +++ b/rubycas-server-core.gemspec @@ -5,9 +5,9 @@ require 'rubycas-server-core/version' Gem::Specification.new do |gem| gem.name = "rubycas-server-core" - gem.version = Rubycas::Server::Core::VERSION - gem.authors = ["Robert Mitwicki"] - gem.email = ["robert.mitwicki@opensoftware.pl"] + gem.version = RubyCAS::Server::Core::Version::STRING + gem.authors = ["Robert Mitwicki", 'Tyler Pickett'] + gem.email = ["robert.mitwicki@opensoftware.pl", 'tyler@therapylog.com'] gem.description = %q{The core logic for handling CAS requests independent of any web presentation technology.} gem.summary = %q{The core logic for handling CAS requests.} gem.homepage = "http://rubycas.github.com"