# frozen_string_literal: true module Skippable def self.included(base) base.class_eval do include InstanceMethods end end module InstanceMethods def skip? `git config --get remote.origin.url`.split("/").last.strip.include? "neeto-auth-web" end def app_is?(git_repo) `git config --get remote.origin.url`.split("/").last.strip.include? "#{git_repo}" end end end