Sha256: 913ea30a162abccf4ab3623c42b59af2653e74c346b1c41dc1ad9674ac3d7d83

Contents?: true

Size: 500 Bytes

Versions: 30

Compression:

Stored size: 500 Bytes

Contents

require 'rake/testtask'
require_relative 'lib/io_streams/version'

task :gem do
  system 'gem build iostreams.gemspec'
end

task :publish => :gem do
  system "git tag -a v#{IOStreams::VERSION} -m 'Tagging #{IOStreams::VERSION}'"
  system 'git push --tags'
  system "gem push iostreams-#{IOStreams::VERSION}.gem"
  system "rm iostreams-#{IOStreams::VERSION}.gem"
end

Rake::TestTask.new(:test) do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
  t.warning = true
end

task :default => :test

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
iostreams-0.16.1 Rakefile
iostreams-0.16.0 Rakefile
iostreams-0.15.0 Rakefile
iostreams-0.14.0 Rakefile
iostreams-0.13.0 Rakefile
iostreams-0.12.1 Rakefile
iostreams-0.12.0 Rakefile
iostreams-0.11.0 Rakefile
iostreams-0.10.1 Rakefile
iostreams-0.10.0 Rakefile