aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/carlosgoce/calendar.rb4
-rw-r--r--lib/carlosgoce/layouts.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/carlosgoce/calendar.rb b/lib/carlosgoce/calendar.rb
index 429cc0e..1166f55 100644
--- a/lib/carlosgoce/calendar.rb
+++ b/lib/carlosgoce/calendar.rb
@@ -30,8 +30,8 @@ module CarlosGoce
}
end
- def generate(layout, file)
- layout.create file, to_h
+ def generate(layout, file, year)
+ layout.create file, to_h, year
end
end
end
diff --git a/lib/carlosgoce/layouts.rb b/lib/carlosgoce/layouts.rb
index 962f8cb..f3e171c 100644
--- a/lib/carlosgoce/layouts.rb
+++ b/lib/carlosgoce/layouts.rb
@@ -1,6 +1,6 @@
module CarlosGoce
class Layout
- def create(file, hash)
+ def create(file, hash, year)
end
end