Sha256: f2cf6fc65f49ba63fa645dd57afe533eef1ec860495b1039c46ae529fa2671b1

Contents?: true

Size: 494 Bytes

Versions: 20

Compression:

Stored size: 494 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

20 entries across 20 versions & 1 rubygems

Version Path
iostreams-1.10.3 Rakefile
iostreams-1.10.2 Rakefile
iostreams-1.10.1 Rakefile
iostreams-1.10.0 Rakefile
iostreams-1.9.0 Rakefile
iostreams-1.8.0 Rakefile
iostreams-1.7.0 Rakefile
iostreams-1.6.2 Rakefile
iostreams-1.6.1 Rakefile
iostreams-1.6.0 Rakefile
iostreams-1.5.1 Rakefile
iostreams-1.5.0 Rakefile
iostreams-1.4.0 Rakefile
iostreams-1.3.3 Rakefile
iostreams-1.3.2 Rakefile
iostreams-1.3.1 Rakefile
iostreams-1.3.0 Rakefile
iostreams-1.2.1 Rakefile
iostreams-1.2.0 Rakefile
iostreams-1.1.1 Rakefile