Rakefile in oidc-test-0.8.7 vs Rakefile in oidc-test-0.8.8
- old
+ new
@@ -6,16 +6,14 @@
class GemHelper
prepend(Module.new do
def install
super
- namespace :release do
- task attest: :build do
- attest if attest?
- end
-
- task rubygem_push: :attest
+ task "release:attest" => "build" do
+ attest if attest?
end
+
+ task "release:rubygem_push" => "release:attest"
end
def build_gem
@build_gem_path = super
end