Sha256: 51b3fa6b61e5cc67b7f1db3382578a6470d4e6a2816a86304218464fe65dd5fd
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
# Rakefile for rubyntlm -*- ruby -*- # $Id: Rakefile,v 1.2 2006/10/05 01:36:52 koheik Exp $ require 'rake/rdoctask' require 'rake/testtask' require 'rake/packagetask' require 'rake/gempackagetask' require File.join(File.dirname(__FILE__), 'lib', 'net', 'ntlm') #PKG_NAME = 'rubyntlm' PKG_NAME = 'ntlm-http' # add a .1 to the end of the version, to distinguish my branch PKG_VERSION = "#{Net::NTLM::VERSION::STRING}.2" task :default => [:test] Rake::TestTask.new(:test) do |t| t.test_files = FileList[ "test/*.rb" ] t.warning = true t.verbose = true end # Rake::PackageTask.new(PKG_NAME, PKG_VERSION) do |p| # p.need_tar_gz = true # p.package_dir = 'build' # p.package_files.include("README", "Rakefile") # p.package_files.include("lib/net/**/*.rb", "test/**/*.rb", "examples/**/*.rb") # end Rake::RDocTask.new do |rd| rd.rdoc_dir = 'doc' rd.title = 'Ruby/NTLM library' rd.main = "README" rd.rdoc_files.include("README", "lib/**/*.rb") end dist_dirs = ["lib", "test", "examples"] spec = Gem::Specification.new do |s| s.name = PKG_NAME s.version = PKG_VERSION s.summary = %q{Ruby/NTLM library.} s.description = %q{Ruby/NTLM provides message creator and parser for the NTLM authentication.} s.authors = ["Kohei Kajimoto"] s.email = %q{koheik@gmail.com} s.homepage = %q{http://rubyforge.org/projects/rubyntlm} s.rubyforge_project = %q{rubyntlm} s.files = ["Rakefile", "README"] dist_dirs.each do |dir| s.files = s.files + Dir.glob("#{dir}/**/*.rb") end s.has_rdoc = true s.extra_rdoc_files = %w( README ) s.rdoc_options.concat ['--main', 'README'] s.autorequire = 'net/ntlm' end Rake::GemPackageTask.new(spec) do |p| p.gem_spec = spec p.need_tar = true p.need_zip = true p.package_dir = 'build' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pyu-ntlm-http-0.1.2.1 | Rakefile |