Sha256: f600d495c835bef8e93d0c4f8ac5b75f8a23b1cad4521bee91275bea576866d2

Contents?: true

Size: 730 Bytes

Versions: 1

Compression:

Stored size: 730 Bytes

Contents

require "bundler/gem_tasks"
require 'rake/clean'

CLEAN.include('*.swp')
CLOBBER.include('pkg/*.gem')

task :default => [:spec,:test]

desc "Run ta_te_ti.rb"
task :bin do
  sh "ruby -Ilib bin/ta_te_ti.rb"
end

desc "Run rspec for ta_te_ti.rb development"
task :spec do
  sh "rspec -Ilib spec/ta_te_ti_spec.rb"
end

desc "Run test/tc_ta_te_ti.rb"
task :test do
  sh "ruby -Ilib test/tc_ta_te_ti.rb"
end

desc "Uninstall gem ta-te-ti"
task :uninstall do
  sh "gem uninstall ta-te-ti"
end

desc "Hide gem ta-te-ti in rubygems.org"
task :unpublish, :version do |args|
  sh "gem yank ta-te-ti -v #{args[:version]}"
end

desc "Show all published versions of gem ta-te-ti"
task :published do
  sh "gem list ta-te-ti --remote --all"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ta-te-ti-0.0.2 Rakefile