Sha256: ed1add5e66f9aaef83e5462e2aebeb203db86dce514c27ac85bff9d7a8c58c14
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
module Fastlane module Actions class JazzyAction < Action def self.run(params) Actions.verify_gem!('jazzy') command = "jazzy" command << " --config #{params[:config]}" if params[:config] Actions.sh(command) end ##################################################### # @!group Documentation ##################################################### def self.description "Generate docs using Jazzy" end def self.available_options [ FastlaneCore::ConfigItem.new( key: :config, env_name: 'FL_JAZZY_CONFIG', description: 'Path to jazzy config file', is_string: true, optional: true ) ] end def self.output end def self.return_value end def self.authors ["KrauseFx"] end def self.is_supported?(platform) [:ios, :mac].include?(platform) end def self.example_code [ 'jazzy' ] end def self.category :documentation end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.165.1 | fastlane/lib/fastlane/actions/jazzy.rb |
fastlane_hotfix-2.165.0 | fastlane/lib/fastlane/actions/jazzy.rb |