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.56.0.beta.20170907010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.56.0.beta.20170906010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.56.0.beta.20170905010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.56.0.beta.20170904010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.56.0.beta.20170903010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.56.0.beta.20170902010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.56.0.beta.20170901010002 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170831010002 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.54.4 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170830010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170829010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.54.3 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170826010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.54.2 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170825010003 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.54.1 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170824010002 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.55.0.beta.20170823010002 fastlane/lib/fastlane/actions/precheck.rb
fastlane-2.54.0 fastlane/lib/fastlane/actions/precheck.rb