# File lib/puppet/file_bucket/file.rb, line 17 17: def initialize( contents, options = {} ) 18: raise ArgumentError if !contents.is_a?(String) 19: @contents = contents 20: 21: @bucket_path = options.delete(:bucket_path) 22: raise ArgumentError if options != {} 23: end