summaryrefslogtreecommitdiffstats
path: root/lib/efl.rb
blob: d93e5d71c57a11ca6ad34faa4a23b7c3300aba78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
#
module Efl
    #
    VERSION = '0.0.1'
    #
    autoload :Eet,          './lib/efl/eet.rb'
    autoload :Evas,         './lib/efl/evas.rb'
    autoload :Ecore,        './lib/efl/ecore.rb'
    autoload :EcoreGetopt,  './lib/efl/ecore_getopt.rb'
    autoload :Edje,         './lib/efl/edje.rb'
    autoload :Elm,          './lib/efl/elementary.rb'
end
#
# EOF