gunark / rubycas-client

Ruby client for Yale's Central Authentication Service protocol -- an open source enterprise single sign on system for web applications.

zuk (author)
Wed Sep 30 11:12:30 -0700 2009
commit  0f21e6a1b11c674a01feab6c0498f5f12ce6f603
tree    7b4771efc06b93fe7a0dad2b3536fc5814c48d43
parent  6a04514830454e363289d950565819d6324a6fc6
rubycas-client / Rakefile
100644 64 lines (56 sloc) 2.08 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require 'rubygems'
require 'rake'
require 'rake/clean'
require 'rake/testtask'
require 'rake/packagetask'
require 'rake/gempackagetask'
require 'rake/rdoctask'
require 'rake/contrib/rubyforgepublisher'
require 'fileutils'
require 'hoe'
include FileUtils
require File.join(File.dirname(__FILE__), 'lib', 'casclient', 'version')
 
AUTHOR = ["Matt Zukowski", "Matt Walker"] # can also be an array of Authors
EMAIL = "matt at roughest dot net"
DESCRIPTION = "Client library for the Central Authentication Service (CAS) protocol."
GEM_NAME = "rubycas-client" # what ppl will type to install your gem
RUBYFORGE_PROJECT = "rubycas-client" # The unix name for your project
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
 
ENV['NODOT'] = '1'
 
NAME = "rubycas-client"
REV = nil
#REV = `svn info`[/Revision: (\d+)/, 1] rescue nil
VERS = ENV['VERSION'] || (CASClient::VERSION::STRING + (REV ? ".#{REV}" : ""))
                          CLEAN.include ['**/.*.sw?', '*.gem', '.config']
RDOC_OPTS = ['--quiet', '--title', "rubycas-client documentation",
    "--opname", "index.html",
    "--line-numbers",
    "--main", "README",
    "--inline-source"]
 
class Hoe
  def extra_deps
    @extra_deps.reject { |x| Array(x).first == 'hoe' }
  end
end
 
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
hoe = Hoe.new(GEM_NAME, VERS) do |p|
  p.author = AUTHOR
  p.description = DESCRIPTION
  p.email = EMAIL
  p.summary = DESCRIPTION
  p.url = HOMEPATH
  p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
  p.test_globs = ["test/**/*_test.rb"]
  p.clean_globs = CLEAN #An array of file patterns to delete on clean.
  
  # == Optional
  #p.changes - A description of the release's latest changes.
  #p.extra_deps - An array of rubygem dependencies.
  #p.spec_extras - A hash of extra values to set in the gemspec.
  p.extra_deps = ['activesupport']
end
 
desc 'Build and install rubycas-client'
task :install do
  system "gem build rubycas-client.gemspec"
  system "sudo gem install rubycas-client-#{VERS}.gem"
end