Skip to content

Commit

Permalink
Prepare the gem files
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Mitwicki committed Feb 9, 2013
1 parent f38682f commit 6db8f42
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
*.rbc
.bundle
.config
coverage
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp

# YARD artifacts
.yardoc
_yardoc
doc/
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gemspec
22 changes: 22 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2013 Robert Mitwicki

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "bundler/gem_tasks"
9 changes: 9 additions & 0 deletions lib/rubycas-server-core.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require "rubycas-server-core/version"

module Rubycas
module Server
module Core
# Your code goes here...
end
end
end
7 changes: 7 additions & 0 deletions lib/rubycas-server-core/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module Rubycas
module Server
module Core
VERSION = "0.0.1"
end
end
end
19 changes: 19 additions & 0 deletions rubycas-server-core.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
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.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"

gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end

0 comments on commit 6db8f42

Please sign in to comment.