diff options
| author | Jamis Buck <jamis@37signals.com> | 2008-05-30 13:20:37 -0600 |
|---|---|---|
| committer | Jamis Buck <jamis@37signals.com> | 2008-05-30 13:20:37 -0600 |
| commit | 056db339066c6b566b4cfab0a30845d3f72cbc3e (patch) | |
| tree | 319710b9d74c842f7084fe2c5045292c7704360a /README.rdoc | |
| parent | 2cc5f9ecf0286fd3bad63c253a337c84fc796cd5 (diff) | |
| download | third_party-sqlite3-ruby-056db339066c6b566b4cfab0a30845d3f72cbc3e.tar.gz third_party-sqlite3-ruby-056db339066c6b566b4cfab0a30845d3f72cbc3e.tar.xz third_party-sqlite3-ruby-056db339066c6b566b4cfab0a30845d3f72cbc3e.zip | |
rename README to README.rdoc.
Also update the Rakefile and gemspecs to reference the new CHANGELOG.rdoc README.rdoc.
Diffstat (limited to 'README.rdoc')
| -rw-r--r-- | README.rdoc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 0000000..5b8eece --- /dev/null +++ b/README.rdoc @@ -0,0 +1,51 @@ += SQLite3/Ruby Interface + +This module allows Ruby programs to interface with the SQLite3 +database engine (http://www.sqlite.org). You must have the +SQLite engine installed in order to build this module. + +Note that this module is NOT compatible with SQLite 2.x. + + +== Compilation and Installation + +Simply do the following, after installing SQLite3: + + ruby setup.rb config + ruby setup.rb setup + ruby setup.rb install + +Alternatively, you can download and install the RubyGem package for +SQLite3/Ruby (you must have RubyGems and SQLite3 installed, first): + + gem install sqlite3-ruby + +If you have sqlite3 installed in a non-standard location, you can specify the location of the include and lib files by doing: + + gem install sqlite3-ruby -- --with-sqlite3-include=/opt/local/include \ + --with-sqlite3-lib=/opt/local/lib + +Also, the gem ships with the C source-code pre-built, so (as of version 1.1.1) +you no longer need to have SWIG installed. However, if you have SWIG installed +and you want to generate the C file yourself, you can specify the +<code>--with-swig</code> option. + +== Usage + +For help figuring out the SQLite3/Ruby interface, check out the +FAQ[http://sqlite-ruby.rubyforge.org/sqlite3/faq.html]. It includes examples of +usage. If you have any questions that you feel should be address in the +FAQ, please send them to jamis@37signals.com + +== Source Code + +The source repository is accessible via git: + + git clone git://github.com/jamis/sqlite3-ruby.git + +== Contact Information + +The project page is http://rubyforge.org/projects/sqlite-ruby. There, you can +find links to mailing lists and forums that you can use to discuss this +library. Additionally, there are trackers for submitting bugs and feature +requests. Feel free to use them! |
