Sha256: 62f9670f48229af5f21d63de3f4ca50e46559267a0b3548a0dfeb58511666f79

Contents?: true

Size: 941 Bytes

Versions: 2

Compression:

Stored size: 941 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

2 entries across 2 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 fastlane/lib/fastlane/actions/backup_file.rb
fastlane_hotfix-2.165.0 fastlane/lib/fastlane/actions/backup_file.rb