Sha256: a293c7ee49e6ff8800bcbdaf09cddc4d750dfcdb3cc406324e3435d6dee2e76a

Contents?: true

Size: 1.07 KB

Versions: 67

Compression:

Stored size: 1.07 KB

Contents

module Fastlane
  module Actions
    class RestoreFileAction < Action
      def self.run(params)
        path = params[:path]
        backup_path = "#{path}.back"
        UI.user_error!("Could not find file '#{backup_path}'") unless File.exist?(backup_path)
        FileUtils.cp(backup_path, path, preserve: true)
        FileUtils.rm(backup_path)
        UI.message("Successfully restored backup 📤")
      end

      def self.description
        'This action restore your file that was backuped with the `backup_file` action'
      end

      def self.is_supported?(platform)
        true
      end

      def self.author
        "gin0606"
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :path,
                                       description: "Original file name you want to restore",
                                       optional: false)
        ]
      end

      def self.example_code
        [
          'restore_file(path: "/path/to/file")'
        ]
      end

      def self.category
        :misc
      end
    end
  end
end

Version data entries

67 entries across 67 versions & 4 rubygems

Version Path
fastlane-2.206.1 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.206.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.205.2 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.205.1 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.205.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.204.3 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.204.2 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.204.1 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.204.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.203.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.202.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.201.2 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.201.1 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.201.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.201.0.rc3 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.201.0.rc2 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.201.0.rc1 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.200.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.199.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.198.1 fastlane/lib/fastlane/actions/restore_file.rb