summaryrefslogtreecommitdiffstats
path: root/lib/efl.rb
blob: 57dd141ea652a79627960bb72930edec8cc51406 (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.2'
    #
    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