8 9 10 11 12 13
# File 'lib/pdfrb/cli/files.rb', line 8 def call(path) doc = Pdfrb::Document.open(path) puts "Embedded files:" doc.files.each { |f| puts " #{f}" } true end