From 0a1fec69494ddff00b13a3b551748aaf9af5b9bf Mon Sep 17 00:00:00 2001 From: Mauricio Gomes Date: Tue, 29 May 2018 21:44:29 -0400 Subject: [PATCH] Update file paths --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 7f62887..2cc398d 100755 --- a/Rakefile +++ b/Rakefile @@ -22,7 +22,7 @@ task full: %w(clean compile test) def gemspec @gemspec ||= begin - file = File.expand_path('../blake2.gemspec', __FILE__) + file = File.expand_path('../blake2b.gemspec', __FILE__) eval(File.read(file), binding, file) end end @@ -35,7 +35,7 @@ end desc "Build the gem" task :gem => [:gemspec, :build] do mkdir_p "pkg" - sh "gem build blake2.gemspec" + sh "gem build blake2b.gemspec" mv "#{gemspec.full_name}.gem", "pkg" require 'digest/sha2'