I'm using the docx gem to open docx files:
https://github.com/mportiz08/docx
This is my setup (I'm using the Paperclip gem to upload the docx file):
post.rb:
has_attached_file :document
validates_attachment_content_type :document,
#:content_type => 'text/plain'
:content_type => ['text/plain',
'application/msword',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document' ]
require 'docx'
def contents_of_file_into_body
if self.document?
path = self.document.queued_for_write[:original].path
#self.content = File.open(path).read
d = Docx::Document.open(path)
d.each_paragraph do |p|
self.content = d.text
end
self.document.clear
end
end
I based it on the documentation:
require 'docx'
d = Docx::Document.open('example.docx')
d.each_paragraph do |p|
puts d
end
But the product (post.content) produces something like this:
--- !ruby/object:Docx::Document paragraphs: - !ruby/object:Docx::Containers::Paragraph text_runs: - !ruby/object:Docx::Containers::TextRun text: RTsadasdasd formatting: :italic: false :bold: false :underline: false - !ruby/object:Docx::Containers::Paragraph text_runs: - !ruby/object:Docx::Containers::TextRun text: asdasdasd formatting: :italic: false :bold: false :underline: false - !ruby/object:Docx::Containers::Paragraph text_runs: - !ruby/object:Docx::Containers::TextRun text: asdasd formatting: :italic: false :bold: false :underline: false
What's the part I am missing here?