From: Lunar <lunar@anargeek.net>
Date: Sun, 9 Jun 2013 06:08:01 +0000 (+0200)
Subject: Add missing require to load OpenStruct
X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/commitdiff_plain/331bd03826f0114e5e700181f8fbe8894325bcb9?ds=sidebyside

Add missing require to load OpenStruct
---

diff --git a/lib/nos_oignons/reminder.rb b/lib/nos_oignons/reminder.rb
index ca4ee06..3db9263 100644
--- a/lib/nos_oignons/reminder.rb
+++ b/lib/nos_oignons/reminder.rb
@@ -1,6 +1,7 @@
 #-*- coding: utf-8 -*-
 
 require 'erb'
+require 'ostruct'
 
 module NosOignons
   class Reminder < Struct.new(:days, :subject, :template)