Sha256: c3f5fff74763d230402893ac74f92b7165332afcc694917e3587d6bec54e21c6

Contents?: true

Size: 1.07 KB

Versions: 579

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

579 entries across 579 versions & 2 rubygems

Version Path
fastlane-2.132.0.beta.20190922200014 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190921200021 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190920200012 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190919200100 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190918200023 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190917200011 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190916200055 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190915200038 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190914200034 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190913200058 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.132.0.beta.20190912200052 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190911200010 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190910200104 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190909200058 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190908200041 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190907200030 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190906200026 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190905200113 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.131.0.beta.20190904200040 fastlane/lib/fastlane/actions/restore_file.rb