Sha256: 9ad8fe623fda9f0895fab62ad2d9d41e5bf5b797af8066bc05b1a5c485f0590a
Contents?: true
Size: 354 Bytes
Versions: 70
Compression:
Stored size: 354 Bytes
Contents
#! /usr/bin/env ruby def stream_out(command) IO.popen(command) do |lines| lines.each do |line| puts line STDOUT.flush end end end root_path = File.expand_path('../..', __FILE__) stream_out("rm -f #{root_path}/*.gem 2> /dev/null") stream_out("gem build #{root_path}/jcompiler.gemspec") stream_out("gem push #{root_path}/*.gem")
Version data entries
70 entries across 70 versions & 1 rubygems