forked from rubycas/rubycas-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubycas-server.gemspec
40 lines (31 loc) · 1.37 KB
/
rubycas-server.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
37
38
39
40
$gemspec = Gem::Specification.new do |s|
s.name = 'rubycas-server'
s.version = '1.0.a'
s.authors = ["Matt Zukowski"]
s.homepage = 'http://code.google.com/p/rubycas-server/'
s.platform = Gem::Platform::RUBY
s.summary = %q{Provides single sign-on authentication for web applications using the CAS protocol.}
s.files = [
"CHANGELOG", "LICENSE", "README.md", "Rakefile", "setup.rb",
"bin/*", "lib/**/*.rb", "public/**/*", "po/**/*", "mo/**/*", "resources/*.*",
"tasks/**/*.rake", "vendor/**/*", "script/*", "lib/**/*.erb", "lib/**/*.builder",
"rubycas-server.gemspec"
].map{|p| Dir[p]}.flatten
s.test_files = `git ls-files -- spec`.split("\n")
s.executables = ["rubycas-server"]
s.bindir = "bin"
s.require_path = "lib"
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.md"]
s.has_rdoc = true
s.post_install_message = %q{
For more information on RubyCAS-Server, see http://code.google.com/p/rubycas-server
If you plan on using RubyCAS-Server with languages other than English, please cd into the
RubyCAS-Server installation directory (where the gem is installed) and type `rake localization:mo`
to build the LOCALE_LC files.
}
s.rdoc_options = [
'--quiet', '--title', 'RubyCAS-Server Documentation', '--opname',
'index.html', '--line-numbers', '--main', 'README.md', '--inline-source'
]
end