reef 0.1.17

a package to execute and log system commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
require "raykit"

task :test do
    run "cargo test"
end

task :publish => [:test,:integrate,:tag] do
    run "cargo publish"
end

task :default => [:test,:integrate,:tag,:push] do
    puts "  #{PROJECT.name} v#{PROJECT.version}"
end