Sha256: ca1fb7c4736551dfc35d64571f6d81f2d3b2e32d70d00f6ce32d7f744f5028fe

Contents?: true

Size: 1.14 KB

Versions: 200

Compression:

Stored size: 1.14 KB

Contents

module Fastlane
  module Actions
    module SharedValues
    end

    class PrecheckAction < Action
      def self.run(config)
        require 'precheck'
        Precheck.config = config
        return Precheck::Runner.new.run
      end

      def self.description
        "Check your app's metadata before you submit your app to review using _precheck_"
      end

      def self.details
        "More information: https://fastlane.tools/precheck"
      end

      def self.available_options
        require 'precheck/options'
        Precheck::Options.available_options
      end

      def self.return_value
        return "true if precheck passes, else, false"
      end

      def self.authors
        ["taquitos"]
      end

      def self.is_supported?(platform)
        platform == :ios
      end

      def self.example_code
        [
          'precheck(
            negative_apple_sentiment(level: :skip), # Set to skip to not run the `negative_apple_sentiment` rule
            curse_words(level: :warn) # Set to warn to only warn on curse word check failures
          )'
        ]
      end

      def self.category
        :misc
      end
    end
  end
end

Version data entries

200 entries across 200 versions & 1 rubygems

Version Path
fastlane-2.61.0.beta.20171009010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.61.0.beta.20171008010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.61.0.beta.20171007010004 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.61.0.beta.20171006010004 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.61.0.beta.20171005010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.61.0.beta.20171004010004 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.1 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20171003010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20171002010004 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20171001010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20170930010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20170929010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20170928010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20170927010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.60.0.beta.20170926010004 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.59.0 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.59.0.beta.20170925010002 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.59.0.beta.20170924010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.59.0.beta.20170923010003 fastlane/lib/fastlane/actions/precheck.rb