Sha256: 18c991b4a5f8e2939162c45c474453d809a0fa630bc8c898722863357c3e6e22

Contents?: true

Size: 1.37 KB

Versions: 107

Compression:

Stored size: 1.37 KB

Contents

require_relative 'module'
require_relative 'runner'

module Snapshot
  # Migrate helper files
  class Update
    # @return [Array] A list of helper files (usually just one)
    def self.find_helper
      paths = Dir["./**/SnapshotHelper.swift"] + Dir["./**/SnapshotHelperXcode8.swift"]
      # exclude assets in gym
      paths.reject { |p| p.include?("snapshot/lib/assets/") }
    end

    def update(force: false)
      paths = self.class.find_helper
      UI.user_error!("Couldn't find any SnapshotHelper files in current directory") if paths.count == 0

      UI.message("Found the following SnapshotHelper:")
      paths.each { |p| UI.message("\t#{p}") }
      UI.important("Are you sure you want to automatically update the helpers listed above?")
      UI.message("This will overwrite all its content with the latest code.")
      UI.message("The underlying API will not change. You can always migrate manually by looking at")
      UI.message("https://github.com/fastlane/fastlane/blob/master/snapshot/lib/assets/SnapshotHelper.swift")

      if !force && !UI.confirm("Overwrite configuration files?")
        return 1
      end

      paths.each do |path|
        UI.message("Updating '#{path}'...")
        input_path = Snapshot::Runner.path_to_helper_file_from_gem
        File.write(path, File.read(input_path))
      end

      UI.success("Successfully updated helper files")
    end
  end
end

Version data entries

107 entries across 107 versions & 1 rubygems

Version Path
fastlane-2.132.0.beta.20190916200055 snapshot/lib/snapshot/update.rb
fastlane-2.132.0.beta.20190915200038 snapshot/lib/snapshot/update.rb
fastlane-2.132.0.beta.20190914200034 snapshot/lib/snapshot/update.rb
fastlane-2.132.0.beta.20190913200058 snapshot/lib/snapshot/update.rb
fastlane-2.132.0.beta.20190912200052 snapshot/lib/snapshot/update.rb
fastlane-2.131.0 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190911200010 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190910200104 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190909200058 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190908200041 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190907200030 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190906200026 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190905200113 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190904200040 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190903200013 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190902200022 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190901200035 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190831200041 snapshot/lib/snapshot/update.rb
fastlane-2.131.0.beta.20190830200038 snapshot/lib/snapshot/update.rb
fastlane-2.130.0 snapshot/lib/snapshot/update.rb