ruby-net-ldap/net-ldap.gemspec
blackhedd 12f7d6efec Added version number.
Removed RELEASE_NOTES in favor of ChangeLog.
Removed COPYING in favor of LICENCE.
2006-04-30 11:32:52 +00:00

14 lines
419 B
Ruby

spec = Gem::Specification.new {|s|
s.name = "netldap"
s.version = "0.0.1"
s.author = "Francis Cianfrocca"
s.email = "garbagecat10@gmail.com"
s.homepage = "netldap@rubyforge.org"
s.summary = "Net::LDAP library"
s.files = FileList["{bin,tests,lib}/**/*"].exclude("rdoc").to_a
s.require_paths = ["lib"]
s.test_file = "tests/testem.rb"
s.has_rdoc = true
s.extra_rdoc_files = ["README", "ChangeLog", "LICENCE"]
}