Sha256: 0bb4115f5d65f253d18f89c4944ff3071ea181e76b55b5c4ec51f507bffd08ab
Contents?: true
Size: 1.74 KB
Versions: 35
Compression:
Stored size: 1.74 KB
Contents
module Fastlane module Actions class GitAddAction < Action def self.run(params) if params[:path].kind_of?(String) paths = params[:path].shellescape else paths = params[:path].map(&:shellescape).join(' ') end result = Actions.sh("git add #{paths}") UI.success("Successfully added \"#{params[:path]}\" 💾.") return result end ##################################################### # @!group Documentation ##################################################### def self.description "Directly add the given file" end def self.details "" end def self.available_options [ FastlaneCore::ConfigItem.new(key: :path, description: "The file you want to add", is_string: false, verify_block: proc do |value| if value.kind_of?(String) UI.user_error!("Couldn't find file at path '#{value}'") unless File.exist?(value) else value.each do |x| UI.user_error!("Couldn't find file at path '#{x}'") unless File.exist?(x) end end end) ] end def self.output end def self.return_value nil end def self.authors ["4brunu"] end def self.is_supported?(platform) true end end end end
Version data entries
35 entries across 35 versions & 1 rubygems