README.markdown in each_sql-0.2.5 vs README.markdown in each_sql-0.3.0

- old
+ new

@@ -1,15 +1,18 @@ -# each_sql +each_sql +======== -Enumerate each SQL statement in the given SQL script. +Enumerate executable blocks in the given SQL script. -## Installation +Installation +------------ ``` gem install 'each_sql' ``` -## Example +Example +------- ### Basic ```ruby require 'each_sql' EachSQL(sql_script).each do |sql| @@ -33,29 +36,38 @@ # For Oracle PL/SQL scripts EachSQL(plsql_script, :oracle).each do |sql| # ... end + +# For PostgreSQL scripts +EachSQL(plpgsql_script, :postgres).each do |sql| + # ... +end ``` -## TODO -- More/better tests. -- pgplsql support. +TODO +---- +- More tests. +- Support for other RDBMSs -## Warning +Warning +------- Stored procedure handling is at best incomplete. Use it at your own risk. -## Contributing to each_sql +Contributing to each_sql +------------------------ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it * Fork the project * Start a feature/bugfix branch * Commit and push until you are happy with your contribution * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. -## Copyright +Copyright +--------- -Copyright (c) 2011 Junegunn Choi. See LICENSE.txt for +Copyright (c) 2012 Junegunn Choi. See LICENSE.txt for further details.