class Fastlane::Helper::PhraseappHelper

Public Class Methods

cli_exist?() click to toggle source
# File lib/fastlane/plugin/phraseapp/helper/phraseapp_helper.rb, line 12
def self.cli_exist?
  !phrase.to_s.empty?
end
execute(command:) click to toggle source
# File lib/fastlane/plugin/phraseapp/helper/phraseapp_helper.rb, line 8
def self.execute(command:)
  `#{phrase} #{command}`
end
phrase() click to toggle source
# File lib/fastlane/plugin/phraseapp/helper/phraseapp_helper.rb, line 16
def self.phrase
  `which phraseapp`.gsub("\n", '')
end