Sha256: 361d370909311676a528827c6ab6665224b90a205be79f7b175ecbcb73ccf571

Contents?: true

Size: 440 Bytes

Versions: 6

Compression:

Stored size: 440 Bytes

Contents

# -*- mode: ruby; coding: utf-8 -*-


%w[.]
  .map  {|s| File.expand_path "../#{s}/lib", __FILE__}
  .each {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)}

require 'xot/rake'
require 'xot/module'

include Xot::Rake


MODULES = [Xot].map {|m| m.const_get :Module}
MODULE  = MODULES.last
DLNAME  = 'tester'


task :default => :build

task :build => :lib

empty_task :test


MODULES.each {|m| m.load_tasks :lib, :ext, :test, :gem}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
xot-0.1.12 Rakefile
xot-0.1.11 Rakefile
xot-0.1.10 Rakefile
xot-0.1.9 Rakefile
xot-0.1.8 Rakefile
xot-0.1.7 Rakefile