aboutsummaryrefslogtreecommitdiffstats
path: root/calendar.rb
diff options
context:
space:
mode:
Diffstat (limited to 'calendar.rb')
-rw-r--r--calendar.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar.rb b/calendar.rb
index 84bd30f..8ebe619 100644
--- a/calendar.rb
+++ b/calendar.rb
@@ -1,5 +1,9 @@
require 'rubygems'
require 'bundler/setup'
-
require 'prawn'
+output_folder = 'output'
+
+Prawn::Document.generate("#{output_folder}/calendar.pdf") do
+ text 'Hello World'
+end \ No newline at end of file