Sha256: c0453a90673da51a2348fa1ed6f995c6a3fa5783a4d68c6f78019868f3206c39

Contents?: true

Size: 1.07 KB

Versions: 472

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

472 entries across 472 versions & 1 rubygems

Version Path
fastlane-2.27.0.beta.20170409010031 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.26.1 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.27.0.beta.20170408010009 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.27.0.beta.20170407010056 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.26.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.26.0.beta.20170406010019 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.26.0.beta.20170405010026 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.26.0.beta.20170404010022 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.25.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.25.0.beta.20170403010018 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.25.0.beta.20170402010035 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.25.0.beta.20170401010021 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.25.0.beta.20170331010039 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.25.0.beta.20170330225747 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.24.0 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.24.0.beta.20170330010023 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.24.0.beta.20170329010023 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.24.0.beta.20170328010037 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.24.0.beta.20170327010009 fastlane/lib/fastlane/actions/restore_file.rb
fastlane-2.24.0.beta.20170326010023 fastlane/lib/fastlane/actions/restore_file.rb