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

Version Path
jcompiler-0.1.127 bin/update
jcompiler-0.1.126 bin/update
jcompiler-0.1.124 bin/update
jcompiler-0.1.123 bin/update
jcompiler-0.1.122 bin/update
jcompiler-0.1.121 bin/update
jcompiler-0.1.120 bin/update
jcompiler-0.1.119 bin/update
jcompiler-0.1.116 bin/update
jcompiler-0.1.115 bin/update
jcompiler-0.1.114 bin/update
jcompiler-0.1.113 bin/update
jcompiler-0.1.112 bin/update
jcompiler-0.1.111 bin/update
jcompiler-0.1.110 bin/update
jcompiler-0.1.109 bin/update
jcompiler-0.1.108 bin/update
jcompiler-0.1.107 bin/update
jcompiler-0.1.106 bin/update
jcompiler-0.1.105 bin/update