ruby_powerpoint 0.0.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +3 -3
- data/lib/ruby_powerpoint/version.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -19,9 +19,9 @@ RubyPowerpoint can simply parse a PowerPoint file(pptx) by extractng text from e
|
|
19
19
|
|
20
20
|
require 'powerpint'
|
21
21
|
deck = RubyPowerpoint::Presentation.new "specs/fixtures/sample.ppts"
|
22
|
-
|
23
|
-
|
24
|
-
|
22
|
+
deck.slides.each do |slide|
|
23
|
+
puts slide.content # => ["Prsentation Header", "Presentation Notes...", "12"]
|
24
|
+
end
|
25
25
|
|
26
26
|
|
27
27
|
== Contributing
|