-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bring version module in line with typical ruby version layouts and
capitalize CAS Signed-off-by: Tyler Pickett <[email protected]>
- Loading branch information
1 parent
771e576
commit 8051e27
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 = ["[email protected]"] | ||
gem.version = RubyCAS::Server::Core::Version::STRING | ||
gem.authors = ["Robert Mitwicki", 'Tyler Pickett'] | ||
gem.email = ["[email protected]", '[email protected]'] | ||
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" | ||
|