Sha256: 7b44f398f1e9cc0e4189f8a927710059dc961bdae76c48dba56e1db7f5c41dab
Contents?: true
Size: 400 Bytes
Versions: 13
Compression:
Stored size: 400 Bytes
Contents
module Commands module Init class FileDefinition attr_accessor :path, :content, :local_path # Options should indicate :content or :local_path, but not both def initialize(options) @path = options[:path] @content = options[:content] if options.key?(:content) @local_path = options[:local_path] if options.key?(:local_path) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems