README.rdoc in sql_tree-0.1.0 vs README.rdoc in sql_tree-0.1.1
- old
+ new
@@ -5,13 +5,12 @@
The library can parse an SQL query (a string) to represent the query using
a syntax tree, and it can generate an SQL query from a syntax tree. The syntax
tree ca be used to inspect to query, or to modify it.
-This library is currently under heavy development. This means that not all
-SQL constructs are supported yet. For now, only SQL <tt>SELECT</tt> queries
-are supported.
+This library is currently in the early stages. This means that the API is not
+yet stable and not all SQL constructs are implemented yet.
== Installation
The SQLTree library is distributed as a gem on Gemcutter.org. To install:
@@ -28,9 +27,11 @@
puts tree.to_sql
# "SELECT * FROM "table" WHERE (("username" = 'user') AND ("password" = MD5('$secret')))"
== Additional information
+This library is written by Willem van Bergen and is MIT licensed (see the
+LICENSE file).
+
+* Full RDoc API documentation can be found at http://rdoc.info/projects/wvanbergen/sql_tree
* See the project wiki at http://wiki.github.com/wvanbergen/sql_tree for more
information about using this library.
-* This plugin is written by Willem van Bergen and is MIT licensed (see the
- LICENSE file).