Sha256: e2c43e1ec13b634e75fe28b278f9879b24b052c598c38b4be3d436503a12cb2d

Contents?: true

Size: 533 Bytes

Versions: 20

Compression:

Stored size: 533 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rake'
require 'rake/testtask'
require 'rdoc/task'

desc 'Test the plugin'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/t*.rb'
  t.verbose = true
end

desc 'Generate RDoc docs'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Versapay'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end


task :default => :test

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
gm_x12-1.6.2 Rakefile
gm_x12-1.6.1 Rakefile
gm_x12-1.6.0 Rakefile
pd_x12-1.5.4 Rakefile
pd_x12-1.5.3 Rakefile
pd_x12-1.5.2 Rakefile
pd_x12-1.5.1 Rakefile
pd_x12-1.5.0 Rakefile
pd_x12-1.4.8 Rakefile
pd_x12-1.4.7 Rakefile
pd_x12-1.4.6 Rakefile
pd_x12-1.4.5 Rakefile
pd_x12-1.4.4 Rakefile
pd_x12-1.4.3 Rakefile
pd_x12-1.4.2 Rakefile
pd_x12-1.4.0 Rakefile
PD_x12-1.3.12 Rakefile
PD_x12-1.3.11 Rakefile
PD_x12-1.3.2 Rakefile
PD_x12-1.3.1 Rakefile