summaryrefslogtreecommitdiffstats
path: root/README.rdoc
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-20 15:24:11 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-20 15:24:11 +0200
commit9a7cd18cd11e0f435443c62fa68871768b98d248 (patch)
tree1e34d56e4f5ad7cd1908ab6155cbcd7fc60bdee5 /README.rdoc
parent5a5e81dbf79ca4967b150ea4930255a2398ccab4 (diff)
downloadffi-efl-9a7cd18cd11e0f435443c62fa68871768b98d248.zip
ffi-efl-9a7cd18cd11e0f435443c62fa68871768b98d248.tar.gz
ffi-e17 renamed to ffi-efl
Diffstat (limited to 'README.rdoc')
-rw-r--r--README.rdoc24
1 files changed, 12 insertions, 12 deletions
diff --git a/README.rdoc b/README.rdoc
index 05bd9f1..bac6abe 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,11 +1,11 @@
-ffi-e17
+ffi-efl
by Jérémy Zurcher
http://cgit.asynk.ch
== DESCRIPTION:
-ffi-e17 is a FFI[https://github.com/ffi/ffi/wiki] binding to Enlightenment Foundation Libraries (eina,eet,evas,ecore,edje)
-and Elementary, part of the Enlightenment project. (E17 API[http://www.enlightenment.org/p.php?p=docs&l=en])
+ffi-efl is a FFI[https://github.com/ffi/ffi/wiki] binding to Enlightenment Foundation Libraries (eina,eet,evas,ecore,edje...)
+base components of the Enlightenment project. (EFL API[http://www.enlightenment.org/p.php?p=docs&l=en])
== FEATURES/PROBLEMS:
@@ -13,16 +13,16 @@ and Elementary, part of the Enlightenment project. (E17 API[http://www.enlighten
== SYNOPSIS:
- require './lib/e17'
- include E17
- EET.init
- EET.open('/tmp/_eet.cfg', EET::FILE_MODE_WRITE) do |f|
+ require './lib/efl'
+ include Efl
+ Eet.init
+ Eet.open('/tmp/_eet.cfg', :eet_file_mode_write) do |f|
f.write 'config2', 'test--key'
end
- EET.open('/tmp/_eet.cfg', EET::FILE_MODE_READ) do |f|
+ Eet.open('/tmp/_eet.cfg', :eet_file_mode_read) do |f|
puts f.read('config2')
end
- EET.shutdown
+ Eet.shutdown
For less minimalistic and more sane examples you may look at:
@@ -37,12 +37,12 @@ For less minimalistic and more sane examples you may look at:
From rubyforge:
- [sudo] gem install ffi-e17
+ [sudo] gem install ffi-efl
or from the git repository on github:
- git clone git://github.com/jeremyz/ffi-e17.git
- cd ffi-e17
+ git clone git://github.com/jeremyz/ffi-efl.git
+ cd ffi-efl
rake gem:install
== CREDITS: