Sha256: 3174db8bbd65c868f14a67609b62469f8bb48641af940d3da25df845d5d46888
Contents?: true
Size: 1.27 KB
Versions: 385
Compression:
Stored size: 1.27 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.return_value # If your method provides a return value, you can describe here what it does end def self.details # Optional: "<%= details.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
385 entries across 385 versions & 1 rubygems