Class: Fastlane::Actions::UpdateFastlaneAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::UpdateFastlaneAction
- Defined in:
- lib/fastlane/actions/update_fastlane.rb
Overview
Makes sure fastlane tools are up-to-date when running fastlane
Constant Summary collapse
- ALL_TOOLS =
[ "fastlane", "fastlane_core", "deliver", "snapshot", "frameit", "pem", "sigh", "produce", "cert", "codes", "credentials_manager", "gym", "spaceship", "pilot", "supply", "scan", "screengrab", "match" ]
Class Method Summary collapse
-
.all_installed_tools ⇒ Object
rubocop:enable Metrics/AbcSize.
- .author ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .is_supported?(platform) ⇒ Boolean
-
.run(options) ⇒ Object
rubocop:disable Metrics/AbcSize.
Methods inherited from Fastlane::Action
action_name, authors, details, method_missing, other_action, output, return_value, sh, step_text
Class Method Details
.all_installed_tools ⇒ Object
rubocop:enable Metrics/AbcSize
108 109 110 |
# File 'lib/fastlane/actions/update_fastlane.rb', line 108 def self.all_installed_tools Gem::Specification.select { |s| ALL_TOOLS.include? s.name }.map(&:name).uniq end |
.author ⇒ Object
130 131 132 |
# File 'lib/fastlane/actions/update_fastlane.rb', line 130 def self. "milch" end |
.available_options ⇒ Object
116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/fastlane/actions/update_fastlane.rb', line 116 def self. [ FastlaneCore::ConfigItem.new(key: :tools, env_name: "FL_TOOLS_TO_UPDATE", description: "Comma separated list of fastlane tools to update (e.g. fastlane,deliver,sigh). If not specified, all currently installed fastlane-tools will be updated", optional: true), FastlaneCore::ConfigItem.new(key: :no_update, env_name: "FL_NO_UPDATE", description: "Don't update during this run. Defaults to false", is_string: false, default_value: false) ] end |
.description ⇒ Object
112 113 114 |
# File 'lib/fastlane/actions/update_fastlane.rb', line 112 def self.description "Makes sure fastlane-tools are up-to-date when running fastlane" end |
.is_supported?(platform) ⇒ Boolean
134 135 136 |
# File 'lib/fastlane/actions/update_fastlane.rb', line 134 def self.is_supported?(platform) true end |
.run(options) ⇒ Object
rubocop:disable Metrics/AbcSize
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/fastlane/actions/update_fastlane.rb', line 30 def self.run() if [:no_update] return end tools_to_update = [:tools].split ',' unless [:tools].nil? tools_to_update ||= all_installed_tools if tools_to_update.count == 0 UI.error("No tools specified or couldn't find any installed fastlane.tools") return end UI.("Looking for updates for #{tools_to_update.join(', ')}...") updater = Gem::CommandManager.instance[:update] cleaner = Gem::CommandManager.instance[:cleanup] sudo_needed = !File.writable?(Gem.dir) if sudo_needed UI.important("It seems that your Gem directory is not writable by your current User.") UI.important("Fastlane would need sudo rights to update itself, however, running 'sudo fastlane' is not recommended.") UI.important("If you still want to use this action, please read the Actions.md documentation on a guide how to set this up.") return end unless updater.respond_to? :highest_installed_gems UI.important "The update_fastlane action requires rubygems version 2.1.0 or greater." UI.important "Please update your version of ruby gems before proceeding." UI.command "gem install rubygems-update" UI.command "update_rubygems" UI.command "gem update --system" return end highest_versions = updater.highest_installed_gems.keep_if { |key| tools_to_update.include? key } update_needed = updater.which_to_update(highest_versions, tools_to_update) if update_needed.count == 0 UI.success("Nothing to update ✅") return end # suppress updater output - very noisy Gem::DefaultUserInteraction.ui = Gem::SilentUI.new update_needed.each do |tool_info| tool = tool_info[0] local_version = Gem::Version.new(highest_versions[tool].version) update_url = FastlaneCore::UpdateChecker.generate_fetch_url(tool) latest_version = FastlaneCore::UpdateChecker.fetch_latest(update_url) UI.("Updating #{tool} from #{local_version} to #{latest_version} ... 🚀") # Approximate_recommendation will create a string like "~> 0.10" from a version 0.10.0, e.g. one that is valid for versions >= 0.10 and <1.0 updater.update_gem tool, Gem::Requirement.new(local_version.approximate_recommendation) UI.("Finished updating #{tool}") end all_updated_tools = updater.installer.installed_gems.select do |updated_tool| updated_tool.version > highest_versions[updated_tool.name].version if highest_versions[updated_tool.name] end if all_updated_tools.empty? UI.("All fastlane tools are up-to-date!") else UI.("Cleaning up old versions...") cleaner.[:args] = all_updated_tools.map(&:name) cleaner.execute UI.("fastlane.tools successfully updated! I will now restart myself... 😴") # Set no_update to true so we don't try to update again exec "FL_NO_UPDATE=true #{$PROGRAM_NAME} #{ARGV.join ' '}" end end |