README.rdoc in ffi-inliner-0.2.2 vs README.rdoc in ffi-inliner-0.2.3
- old
+ new
@@ -8,15 +8,15 @@
== FEATURES/PROBLEMS:
* Mix C snippets in your Ruby code and gulp it on the fly!
* It's based on Ruby-FFI so the C code you inject is portable across
- Ruby implementation!
+ Ruby implementations!
* Yep, it means that you can run it on JRuby too!
* Fast compilation through tcc[http://bellard.org/tcc/]
* But it can use the system's compiler (e.g. gcc) on those platforms
- that don't support tcc (e.g. OSX)
+ that don't support tcc (e.g. OSX) or that don't have it installed
== SYNOPSIS:
require 'ffi-inliner'
@@ -32,10 +32,12 @@
end
Foo.new.say_hello('foos')
For other hints see the examples/ folder or visit the
-wiki[http://wiki.github.com/remogatto/ffi-inliner/tutorial]
+wiki[http://wiki.github.com/remogatto/ffi-inliner/tutorial]. For a
+"real" world example you may be interested to
+ffi-life[http://github.com/remogatto/ffi-life].
== REQUIREMENTS:
* ffi >= 0.4.0
* gcc and/or tcc >= 0.9.25 (optional)