Sha256: dc971f7065c3bc7b19b0e4b89f6e8521a3fa5fb06aacb4b57f5351071b0e278f
Contents?: true
Size: 393 Bytes
Versions: 20
Compression:
Stored size: 393 Bytes
Contents
# frozen_string_literal: true module GoNative module Plugins module IOS class Verify extend DSL::Serviceable def call assert_staging_clear! end def assert_staging_clear! return if `git status --porcelain`.empty? raise Error, "There are uncommitted changes in the repository" end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems