Sha256: 408d146763f1e7bdf2e208c58ac95a65c0053a4c77aacd44df855f1e4459e6ca

Contents?: true

Size: 1.27 KB

Versions: 54

Compression:

Stored size: 1.27 KB

Contents

module Fastlane
  module Actions
    module SharedValues
      SNAPSHOT_SCREENSHOTS_PATH = :SNAPSHOT_SCREENSHOTS_PATH
    end

    class CaptureIosScreenshotsAction < Action
      def self.run(params)
        return nil unless Helper.mac?
        require 'snapshot'

        Snapshot.config = params
        Snapshot::DependencyChecker.check_simulators
        Snapshot::Runner.new.work

        Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] = File.expand_path(params[:output_directory]) # absolute URL

        true
      end

      def self.description
        "Generate new localized screenshots on multiple devices (via _snapshot_)"
      end

      def self.available_options
        return [] unless Helper.mac?
        require 'snapshot'
        Snapshot::Options.available_options
      end

      def self.author
        "KrauseFx"
      end

      def self.is_supported?(platform)
        [:ios, :mac].include? platform
      end

      def self.example_code
        [
          'capture_ios_screenshots',
          'snapshot # alias for "capture_ios_screenshots"',
          'capture_ios_screenshots(
            skip_open_summary: true,
            clean: true
          )'
        ]
      end

      def self.category
        :screenshots
      end
    end
  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
fastlane-2.69.0.beta.20171212010004 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171211010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171210010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171209010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171208010004 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171207010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171206010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.68.2 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171205010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.68.1 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171204010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171203010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171202010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane-2.69.0.beta.20171201010003 fastlane/lib/fastlane/actions/capture_ios_screenshots.rb