Added the framework for release. I haven't actually verified this yet for Net::LDAP, but I used the same framework for the recent release of MIME::Types. Some pieces of the code may need to be moved around to better handle the testing framework in the Rakefile and the pre-setup.rb file. To make this work, you will need the meta_project, gmailer, and archive-tar-minitar gems.

This commit is contained in:
austin 2006-04-30 03:34:34 +00:00
parent 65102e44d9
commit 2faf22a2af
11 changed files with 2025 additions and 278 deletions

13
net-ldap.gemspec Normal file
View file

@ -0,0 +1,13 @@
spec = Gem::Specification.new {|s|
s.name = "netldap"
s.version = em_version
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", "RELEASE_NOTES", "COPYING"]
}