forked from rubycas/rubycas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubycas-client.gemspec
36 lines (33 loc) · 1.74 KB
/
rubycas-client.gemspec
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
Gem::Specification.new do |s|
s.name = %q{rubycas-client}
s.version = "2.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Zukowski", "Matt Walker"]
s.date = %q{2008-11-18}
s.description = %q{Client library for the Central Authentication Service (CAS) protocol.}
s.email = %q{matt at roughest dot net}
s.extra_rdoc_files = ["CHANGELOG.txt", "History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc"]
s.files = ["CHANGELOG.txt", "History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc", "Rakefile", "init.rb", "lib/casclient.rb", "lib/casclient/client.rb",
"lib/casclient/frameworks/rails/cas_proxy_callback_controller.rb", "lib/casclient/frameworks/rails/filter.rb", "lib/casclient/frameworks/merb/strategy.rb", "lib/casclient/responses.rb", "lib/casclient/tickets.rb", "lib/casclient/version.rb", "lib/rubycas-client.rb", "setup.rb"]
s.has_rdoc = true
s.homepage = %q{http://rubycas-client.rubyforge.org}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{rubycas-client}
s.rubygems_version = %q{1.2.0}
s.summary = %q{Client library for the Central Authentication Service (CAS) protocol.}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
s.add_development_dependency(%q<hoe>, [">= 1.7.0"])
else
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 1.7.0"])
end
else
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 1.7.0"])
end
end