From: Michael Orlitzky Date: Sat, 20 Apr 2024 22:41:02 +0000 (-0400) Subject: Rakefile: drop --user-install from gem command X-Git-Tag: 0.1.0~9 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=52b0c5b62c4a938b584e7fd3d6e9e0c436b66723 Rakefile: drop --user-install from gem command This is outdated I guess? Whatever. --- diff --git a/Rakefile b/Rakefile index 72eff7b..0dc4d9e 100644 --- a/Rakefile +++ b/Rakefile @@ -20,7 +20,7 @@ end desc 'Install the gem locally (user install)' task :install => :build do - sh 'gem install --user-install *.gem' + sh 'gem install mailshears-*.gem' end Rake::TestTask.new do |t|