Skip to content

Commit

Permalink
bring version module in line with typical ruby version layouts and
Browse files Browse the repository at this point in the history
capitalize CAS

Signed-off-by: Tyler Pickett <[email protected]>
  • Loading branch information
tpickett66 authored and Robert Mitwicki committed Oct 7, 2013
1 parent 771e576 commit 8051e27
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions lib/rubycas-server-core/version.rb
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
6 changes: 3 additions & 3 deletions rubycas-server-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8051e27

Please sign in to comment.