Class: Fastlane::PluginFetcher

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/plugins/plugin_fetcher.rb

Overview

Use the RubyGems API to get all fastlane plugins

Class Method Summary collapse

Class Method Details

.fetch_gems(search_query: nil) ⇒ Object

Returns an array of FastlanePlugin objects



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/fastlane/plugins/plugin_fetcher.rb', line 8

def self.fetch_gems(search_query: nil)
  require 'json'
  require 'open-uri'
  url = "https://rubygems.org/api/v1/search.json?query=#{PluginManager.plugin_prefix}"
  results = JSON.parse(open(url).read)

  plugins = results.collect do |current|
    FastlanePlugin.new(current)
  end

  return plugins if search_query.to_s.length == 0

  plugins.keep_if do |current|
    current.full_name.include?(search_query)
  end
end

.update_md_file!Object



25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/fastlane/plugins/plugin_fetcher.rb', line 25

def self.update_md_file!
  @plugins = fetch_gems

  lib_path = FastlaneCore::Helper.gem_path('fastlane')
  template_path = File.join(lib_path, "lib/assets/AvailablePlugins.md.erb")
  md = ERB.new(File.read(template_path), nil, '<>').result(binding) # http://www.rrn.dk/rubys-erb-templating-system

  puts md
  output_path = "docs/AvailablePlugins.md"
  File.write(output_path, md)
  FastlaneCore::UI.success("Successfully written plugin file to '#{output_path}'")
end