Sha256: 7fc99bde28f39937c738ea0184b3e61098d03852c36fb4476947c3d7b0f97237
Contents?: true
Size: 844 Bytes
Versions: 1
Compression:
Stored size: 844 Bytes
Contents
require 'hoe' require 'spec/rake/spectask' PKG_NAME = "dbf" PKG_VERSION = "1.0.5" PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" Hoe.new PKG_NAME, PKG_VERSION do |p| p.rubyforge_name = PKG_NAME p.author = "Keith Morrison" p.email = "keithm@infused.org" p.summary = "A small fast library for reading dBase, xBase, Clipper and FoxPro database files." p.description = p.paragraphs_of("README.txt", 1..3).join("\n\n") p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n") p.url = "http://dbf.rubyforge.org" p.need_tar = true p.need_zip = true end task :default => [:spec] desc "Run specs" Spec::Rake::SpecTask.new :spec do |t| t.spec_files = FileList['spec/**/*spec.rb'] end desc "Run spec docs" Spec::Rake::SpecTask.new :specdoc do |t| t.spec_opts = ["-f specdoc"] t.spec_files = FileList['spec/**/*spec.rb'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dbf-1.0.5 | Rakefile |