Sha256: 19dbd0a4442751299c3412f76789b8aa0f137a6c56fa2c5663df33fc47a6adf5
Contents?: true
Size: 1.06 KB
Versions: 17
Compression:
Stored size: 1.06 KB
Contents
module Fastlane module Actions class <%= plugin_name.fastlane_class %>Action < Action def self.run(params) UI.message("The <%= plugin_name %> plugin is working!") end def self.description "<%= summary.gsub('"', "'") %>" end def self.authors ["<%= author.gsub('"', "'") %>"] end def self.available_options [ # FastlaneCore::ConfigItem.new(key: :your_option, # env_name: "<%= plugin_name.upcase %>_YOUR_OPTION", # description: "A description of your option", # optional: false, # type: String) ] end def self.is_supported?(platform) # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example) # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md # # [:ios, :mac, :android].include?(platform) true end end end end
Version data entries
17 entries across 17 versions & 1 rubygems