Sha256: 812cbe770808a668b3e3724b4094347a65612255dc0595f64f375b73bb35fd86
Contents?: true
Size: 584 Bytes
Versions: 19
Compression:
Stored size: 584 Bytes
Contents
module Fastlane module Actions module SharedValues end class FrameitAction def self.run(params) return if Helper.test? require 'frameit' color = Frameit::Editor::Color::BLACK color = Frameit::Editor::Color::SILVER if [:silver, :white].include?(params.first) screenshots_folder = Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] screenshots_folder ||= FastlaneFolder.path Dir.chdir(screenshots_folder) do Frameit::Editor.new.run('.', color) end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems