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
simple_ldap_authenticator / simple_ldap_authenticator.gemspec
100755 14 lines (13 sloc) 0.476 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
spec = Gem::Specification.new do |s|
  s.name = "simple_ldap_authenticator"
  s.version = "1.0.0"
  s.author = "Jeremy Evans"
  s.email = "code@jeremyevans.net"
  s.platform = Gem::Platform::RUBY
  s.summary = "Easy authentication to an LDAP server(s)"
  s.files = ["README", "LICENSE", "lib/simple_ldap_authenticator.rb"]
  s.extra_rdoc_files = ["LICENSE"]
  s.require_paths = ["lib"]
  s.has_rdoc = true
  s.rdoc_options = %w'--inline-source --line-numbers README lib'
end