ruby_powerpoint 0.0.1 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- 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
|