This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
tidy_ffi /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Mar 13 22:42:51 -0700 2009 | |
| |
CHANGELOG | ||
| |
LICENSE | Wed Feb 11 23:26:04 -0800 2009 | |
| |
Manifest | Sat Mar 14 10:33:50 -0700 2009 | |
| |
README.rdoc | Mon Mar 16 01:34:01 -0700 2009 | |
| |
Rakefile | Sun Jun 07 08:45:17 -0700 2009 | |
| |
lib/ | ||
| |
test/ | ||
| |
tidy_ffi.gemspec |
README.rdoc
Tidy FFI
What is it all about?
I wanna clean and simple tidy library. For example:
TidyFFI::Tidy.new('a string').clean
For now it can’t do anything else than clean (and saves errors from it) :)
Options
You can use different ways to set up options. These examples are produces the same output:
TidyFFI::Tidy.default_options.show_body_only = true
TidyFFI::Tidy.new('test').clean
TidyFFI::Tidy.with_options(:show_body_only => true).new('test').clean
tidy = TidyFFI::Tidy.new('test')
tidy.options.show_body_only = true
tidy.clean
TidyFFI::Tidy.new('test', :show_body_only => true).clean
TidyFFI::Tidy.clean('test', :show_body_only => 1)
Links
- Source code: github.com/libc/tidy_ffi
- Bug tracker: rubyforge.org/tracker/?atid=30230&group_id=7805&func=browse
- Rubyforge project: rubyforge.org/projects/tidy-ffi








