Sha256: 99dc0e37114a7b4b53dbb2af175e700bedb178682dcfcff5cb6b7925bbbf403e

Contents?: true

Size: 1.99 KB

Versions: 10

Compression:

Stored size: 1.99 KB

Contents

module Fastlane
  module Actions
    module SharedValues
      SNAPSHOT_SCREENSHOTS_PATH = :SNAPSHOT_SCREENSHOTS_PATH
    end

    class SnapshotAction < Action
      def self.run(params)
        $verbose = true if params[:verbose]
        clean = !params[:noclean]

        if Helper.test?
          Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] = Dir.pwd
          return clean
        end

        require 'snapshot'

        FastlaneCore::UpdateChecker.start_looking_for_update('snapshot') unless Helper.is_test?

        begin
          Dir.chdir(FastlaneFolder.path) do
            Snapshot::SnapshotConfig.shared_instance
            Snapshot::Runner.new.work(clean: clean)

            results_path = Snapshot::SnapshotConfig.shared_instance.screenshots_path

            Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] = File.expand_path(results_path) # absolute URL
          end
        ensure
          FastlaneCore::UpdateChecker.show_update_status('snapshot', Snapshot::VERSION)
        end
      end

      def self.description
        "Generate new localised screenshots on multiple devices"
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :noclean,
                                       env_name: "FL_SNAPSHOT_NO_CLEAN",
                                       description: "Skips the clean process when building the app",
                                       is_string: false,
                                       default_value: false),
          FastlaneCore::ConfigItem.new(key: :verbose,
                                       env_name: "FL_SNAPSHOT_VERBOSE",
                                       description: "Print out the UI Automation output",
                                       is_string: false,
                                       default_value: false)
        ]
      end

      def self.author
        "KrauseFx"
      end

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fastlane-1.0.2 lib/fastlane/actions/snapshot.rb
fastlane-1.0.1 lib/fastlane/actions/snapshot.rb
fastlane-1.0.0 lib/fastlane/actions/snapshot.rb
fastlane-0.13.0 lib/fastlane/actions/snapshot.rb
fastlane-0.12.5 lib/fastlane/actions/snapshot.rb
fastlane-0.12.4 lib/fastlane/actions/snapshot.rb
fastlane-0.12.3 lib/fastlane/actions/snapshot.rb
fastlane-0.12.2 lib/fastlane/actions/snapshot.rb
fastlane-0.12.1 lib/fastlane/actions/snapshot.rb
fastlane-0.12.0 lib/fastlane/actions/snapshot.rb