reef 0.0.12

a package to execute and log system commands
Documentation
require 'rustkit'


# git tag -a v0.0.1 -m "version 0.0.1"
task :build do
    PROJECT.run('cargo build')
end

task :package do
    PROJECT.run('cargo package')
end

task :tag do
    #PROJECT.run('git tag -a v#{VERSION} -m "version #{VERSION}"')
end
task :publish do
    PROJECT.run('cargo publish')
end