Sha256: 6d75b52573c47214b4178fde6e931e77497fe5c95214b8c77531759727d67b6c
Contents?: true
Size: 900 Bytes
Versions: 1051
Compression:
Stored size: 900 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,051 entries across 1,051 versions & 2 rubygems