Sha256: 5f3134c361eb3468649c0e5479443ba5d3062f7536fdab94fe9b279a3beb6c7f

Contents?: true

Size: 937 Bytes

Versions: 1

Compression:

Stored size: 937 Bytes

Contents

module Fastlane
  module Actions
    class BackupFileAction < Action
      def self.run(params)
        path = params[:path]
        FileUtils.cp(path, "#{path}.back", preserve: true)
        UI.message("Successfully created a backup 💾")
      end

      def self.description
        'This action backs up your file to "[path].back"'
      end

      def self.is_supported?(platform)
        true
      end

      def self.author
        "gin0606"
      end

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

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

      def self.category
        :misc
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fastlane_hotfix-2.187.0 fastlane/lib/fastlane/actions/backup_file.rb