27 lines
		
	
	
		
			797 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			797 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require "hbc/artifact/moved"
 | |
| 
 | |
| require "hbc/utils/hash_validator"
 | |
| 
 | |
| module Hbc
 | |
|   module Artifact
 | |
|     class Artifact < Moved
 | |
|       def self.artifact_english_name
 | |
|         "Generic Artifact"
 | |
|       end
 | |
| 
 | |
|       def self.artifact_dirmethod
 | |
|         :appdir
 | |
|       end
 | |
| 
 | |
|       def load_specification(artifact_spec)
 | |
|         source_string, target_hash = artifact_spec
 | |
|         raise CaskInvalidError.new(@cask.token, "no source given for artifact") if source_string.nil?
 | |
|         @source = @cask.staged_path.join(source_string)
 | |
|         raise CaskInvalidError.new(@cask.token, "target required for generic artifact #{source_string}") unless target_hash.is_a?(Hash)
 | |
|         target_hash.extend(HashValidator).assert_valid_keys(:target)
 | |
|         @target = Pathname.new(target_hash[:target])
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
