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-1.1.0 Rakefile
iostreams-1.0.0 Rakefile
iostreams-1.0.0.beta7 Rakefile
iostreams-1.0.0.beta6 Rakefile
iostreams-1.0.0.beta5 Rakefile
iostreams-1.0.0.beta4 Rakefile
iostreams-1.0.0.beta3 Rakefile
iostreams-1.0.0.beta2 Rakefile
iostreams-1.0.0.beta Rakefile
iostreams-0.20.3 Rakefile
iostreams-0.20.2 Rakefile
iostreams-0.20.1 Rakefile
iostreams-0.20.0 Rakefile
iostreams-0.19.0 Rakefile
iostreams-0.18.0 Rakefile
iostreams-0.17.3 Rakefile
iostreams-0.17.2 Rakefile
iostreams-0.17.1 Rakefile
iostreams-0.17.0 Rakefile
iostreams-0.16.2 Rakefile