Sha256: 4d1cb5559ed0462e9cadc0703872284269f1a097dcb887ce69015823b11e4062
Contents?: true
Size: 1022 Bytes
Versions: 432
Compression:
Stored size: 1022 Bytes
Contents
module Fastlane module Actions class IsCiAction < Action def self.run(params) Helper.is_ci? end ##################################################### # @!group Documentation ##################################################### def self.description "Is the current run being executed on a CI system, like Jenkins or Travis" end def self.details [ "The return value of this method is true if fastlane is currently executed on", "Travis, Jenkins, Circle or a similar CI service" ].join("\n") end def self.available_options [] end def self.authors ["KrauseFx"] end def self.is_supported?(platform) true end def self.example_code [ 'if is_ci? puts "I\'m a computer" else say "Hi Human!" end' ] end def self.category :misc end end end end
Version data entries
432 entries across 432 versions & 1 rubygems