Class: Fastlane::Actions::FrameScreenshotsAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, deprecated_notes, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
40
41
42
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 40
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
.category ⇒ Object
55
56
57
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 55
def self.category
:screenshots
end
|
.description ⇒ Object
17
18
19
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 17
def self.description
"Adds device frames around all screenshots (via _frameit_)"
end
|
.details ⇒ Object
21
22
23
24
25
26
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 21
def self.details
[
"Uses [frameit](https://docs.fastlane.tools/actions/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
|
.example_code ⇒ Object
44
45
46
47
48
49
50
51
52
53
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 44
def self.example_code
[
'frame_screenshots',
'frameit # alias for "frame_screenshots"',
'frame_screenshots(use_platform: "ANDROID")',
'frame_screenshots(silver: true)',
'frame_screenshots(path: "/screenshots")',
'frame_screenshots(rose_gold: true)'
]
end
|
.is_supported?(platform) ⇒ Boolean
59
60
61
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 59
def self.is_supported?(platform)
[:ios, :mac, :android].include?(platform)
end
|
.run(config) ⇒ Object
4
5
6
7
8
9
10
11
12
13
14
15
|
# File 'fastlane/lib/fastlane/actions/frame_screenshots.rb', line 4
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
|