public
Description: Rails plugin that allows for simple authentication to an LDAP server with a minimum of configuration
Homepage: http://code.jeremyevans.net/doc/simple_ldap_authenticator/
Clone URL: git://github.com/jeremyevans/simple_ldap_authenticator.git
100644 21 lines (18 sloc) 0.545 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rake'
require 'rake/clean'
begin
  require 'hanna/rdoctask'
rescue LoadError
  require 'rake/rdoctask'
end
 
Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = "rdoc"
  rdoc.options += ["--quiet", "--line-numbers", "--inline-source"]
  rdoc.main = "README"
  rdoc.title = "simple_ldap_authenticator: Easy authentication to an LDAP server(s)"
  rdoc.rdoc_files.add ["README", "LICENSE", "lib/simple_ldap_authenticator.rb"]
end
 
desc "Package simple_ldap_authenticator"
task :package do
  sh %{gem build simple_ldap_authenticator.gemspec}
end