Ooops, I added my code in the top level.
Provisionally added this branch to keep from messing things up.
This commit is contained in:
commit
eb3ab200f8
10 changed files with 1357 additions and 0 deletions
33
Rakefile
Normal file
33
Rakefile
Normal file
|
@ -0,0 +1,33 @@
|
|||
# $Id$
|
||||
# Rakefile for the netldap ruby gem.
|
||||
#
|
||||
|
||||
|
||||
require 'rubygems'
|
||||
Gem::manage_gems
|
||||
require 'rake/gempackagetask'
|
||||
|
||||
em_version = "0.0.1"
|
||||
|
||||
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.autorequire = "netldap"
|
||||
s.test_file = "tests/testem.rb"
|
||||
s.has_rdoc = true
|
||||
s.extra_rdoc_files = ["README", "RELEASE_NOTES", "COPYING"]
|
||||
}
|
||||
|
||||
Rake::GemPackageTask.new( spec ) {|pkg|
|
||||
pkg.need_tar = true
|
||||
}
|
||||
|
||||
|
||||
task :default => ["pkg/netldap-#{em_version}.gem"]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue