class Fastlane::FastlanePlugin
Attributes
Public Class Methods
Source
# File fastlane/lib/fastlane/plugins/plugin_fetcher.rb, line 42 def initialize(hash) self.full_name = hash["name"] self.name = self.full_name.gsub(PluginManager.plugin_prefix, '') self.downloads = hash["downloads"] self.info = hash["info"] self.homepage = hash["homepage_uri"] end
Public Instance Methods
Source
# File fastlane/lib/fastlane/plugins/plugin_fetcher.rb, line 50 def linked_title return "`#{name}`" if homepage.to_s.length == 0 return "[#{name}](#{homepage})" end