Sha256: 3ad36e4f272530a251f345058143e965b631ed328c0a287dc4c68f1ec2fb8396

Contents?: true

Size: 1007 Bytes

Versions: 5

Compression:

Stored size: 1007 Bytes

Contents

module Fastlane
  class PluginInfo
    attr_reader :plugin_name
    attr_reader :author
    attr_reader :gem_name
    attr_reader :email
    attr_reader :summary

    def initialize(plugin_name, author, email, summary)
      @plugin_name = plugin_name
      @author = author
      @email = email
      @summary = summary
    end

    def gem_name
      "#{Fastlane::PluginManager::FASTLANE_PLUGIN_PREFIX}#{plugin_name}"
    end

    def require_path
      gem_name.tr('-', '/')
    end

    def actions_path
      File.join(require_path, 'actions')
    end

    def helper_path
      File.join(require_path, 'helper')
    end

    # Used to expose a local binding for use in ERB templating
    #
    # rubocop:disable Style/AccessorMethodName
    def get_binding
      binding
    end
    # rubocop:enable Style/AccessorMethodName

    def ==(other)
      @plugin_name == other.plugin_name &&
      @author == other.author &&
      @email == other.email &&
      @summary == other.summary
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fastlane-1.94.0 lib/fastlane/plugins/plugin_info.rb
fastlane-1.93.1 lib/fastlane/plugins/plugin_info.rb
fastlane-1.93.0 lib/fastlane/plugins/plugin_info.rb
fastlane-1.92.0.beta2 lib/fastlane/plugins/plugin_info.rb
fastlane-1.92.0.beta1 lib/fastlane/plugins/plugin_info.rb