From 4f12493604d7f08861422926d360a35100dcbb3a Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 30 Jul 2012 19:31:21 +0200 Subject: [PATCH] Moved about elsewhere. --- lib/qasim/about.rb | 8 -------- lib/qasim/ui/about.rb | 11 +++++++++++ 2 files changed, 11 insertions(+), 8 deletions(-) delete mode 100644 lib/qasim/about.rb create mode 100644 lib/qasim/ui/about.rb diff --git a/lib/qasim/about.rb b/lib/qasim/about.rb deleted file mode 100644 index 0586adb..0000000 --- a/lib/qasim/about.rb +++ /dev/null @@ -1,8 +0,0 @@ - -require 'qasim/ui/about_ui' - -module Qasim - class AboutUi < Ui::About - - end -end diff --git a/lib/qasim/ui/about.rb b/lib/qasim/ui/about.rb new file mode 100644 index 0000000..0072e1c --- /dev/null +++ b/lib/qasim/ui/about.rb @@ -0,0 +1,11 @@ + +require 'qasim/ui/about_ui' + +module Qasim ; module Ui + class About + def initialize + setup_ui(self) + end + end + +end ; end