Sha256: bacce399bd7af01f466f8d7c1067d146c241a719e7376c59555d3d42beaf5be0

Contents?: true

Size: 401 Bytes

Versions: 9

Compression:

Stored size: 401 Bytes

Contents

#!/usr/bin/env ruby

require 'digest/sha2'

gemname         = 'fix-command'.to_sym
ARGV[0]         = File.read('VERSION.semver').chomp if ARGV[0].nil?
built_gem_path  = "pkg/#{gemname}-#{ARGV[0]}.gem"
checksum        = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
checksum_path   = "checksum/#{gemname}-#{ARGV[0]}.gem.sha512"

File.open(checksum_path, 'w') { |f| f.write("#{checksum}\n") }

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fix-command-0.5.1 pkg_checksum
fix-command-0.5.0 pkg_checksum
fix-command-0.4.0 pkg_checksum
fix-command-0.3.0 pkg_checksum
fix-command-0.2.0 pkg_checksum
fix-command-0.1.3 pkg_checksum
fix-command-0.1.2 pkg_checksum
fix-command-0.1.1 pkg_checksum
fix-command-0.1.0 pkg_checksum