diff options
-rw-r--r-- | lib/efl.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/efl.rb b/lib/efl.rb new file mode 100644 index 0000000..a441c0b --- /dev/null +++ b/lib/efl.rb @@ -0,0 +1,14 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +# +module Efl +# autoload :Eina, './lib/efl/eina.rb' + autoload :Eet, './lib/efl/eet.rb' + autoload :Evas, './lib/efl/evas.rb' + autoload :Ecore, './lib/efl/ecore.rb' + autoload :Edje, './lib/efl/edje.rb' + autoload :Elm, './lib/efl/elementary.rb' +end +# +# EOF |