Sha256: f879015958e73677843c0a4316b55a28662e72159413b66e46607e7ff268afb5

Contents?: true

Size: 1.85 KB

Versions: 51

Compression:

Stored size: 1.85 KB

Contents

module Fastlane
  module Actions
    class FrameScreenshotsAction < Action
      def self.run(config)
        return if Helper.test?

        require 'frameit'

        UI.message("Framing screenshots at path #{config[:path]} (via frameit)")

        Dir.chdir(config[:path]) do
          Frameit.config = config
          Frameit::Runner.new.run('.')
        end
      end

      def self.description
        "Adds device frames around all screenshots (via _frameit_)"
      end

      def self.details
        [
          "Uses [frameit](https://github.com/fastlane/fastlane/tree/master/frameit) to prepare perfect screenshots for the App Store, your website, QA",
          "or emails. You can add background and titles to the framed screenshots as well."
        ].join("\n")
      end

      def self.available_options
        require "frameit"
        require "frameit/options"
        FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options) + [
          FastlaneCore::ConfigItem.new(key: :path,
                                       env_name: "FRAMEIT_SCREENSHOTS_PATH",
                                       description: "The path to the directory containing the screenshots",
                                        default_value: Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] || FastlaneCore::FastlaneFolder.path)
        ]
      end

      def self.author
        "KrauseFx"
      end

      def self.example_code
        [
          'frame_screenshots',
          'frameit # alias for "frame_screenshots"',
          'frame_screenshots(silver: true)',
          'frame_screenshots(path: "/screenshots")',
          'frame_screenshots(rose_gold: true)'
        ]
      end

      def self.category
        :screenshots
      end

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

Version data entries

51 entries across 51 versions & 1 rubygems

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