From 13e4aa59154e9ef8df4b2fbf138350e6af85af1e Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 30 Jul 2012 19:28:54 +0200 Subject: [PATCH] Added autoload for Ui files. --- lib/qasim/ui.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/qasim/ui.rb diff --git a/lib/qasim/ui.rb b/lib/qasim/ui.rb new file mode 100644 index 0000000..e0e110e --- /dev/null +++ b/lib/qasim/ui.rb @@ -0,0 +1,6 @@ + +require 'qasim/constants' + +module Qasim ; module Ui + autoload :About, 'qasim/ui/about' +end ; end