Sha256: 2b410ee65a5d419e5df535c7bb12af522afc9c7531975b358d30ccbc71ff240f

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = "textfile"
  gem.homepage = "http://github.com/varyonic/textfile"
  gem.license = "MIT"
  gem.summary = %Q{Set-like wrapper around GNU comm and related textfile utilities.}
  gem.description = %Q{Set-like wrapper around GNU comm and related textfile utilities.

A common use case is to identify differences between exported datasets where the datasets may exceed 100K rows and each row may exceed 4K characters.}
  gem.email = "piers@varyonic.com"
  gem.authors = ["Piers Chambers"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['test'].execute
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "textfile #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
textfile-1.0.5 Rakefile
textfile-1.0.4 Rakefile
textfile-1.0.3 Rakefile
textfile-1.0.2 Rakefile