summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README20
-rw-r--r--lib/sqlite3/version.rb2
-rw-r--r--sqlite3-ruby.gemspec4
3 files changed, 18 insertions, 8 deletions
diff --git a/README b/README
index 47a395d..01abbc0 100644
--- a/README
+++ b/README
@@ -18,19 +18,29 @@ Simply do the following, after installing SQLite3:
Alternatively, you can download and install the RubyGem package for
SQLite3/Ruby (you must have RubyGems and SQLite3 installed, first):
- gem install --remote sqlite3-ruby
+ 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_buck@byu.edu.
+FAQ, please send them to jamis@37signals.com
== 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!
+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!
diff --git a/lib/sqlite3/version.rb b/lib/sqlite3/version.rb
index b6e22e1..28c51da 100644
--- a/lib/sqlite3/version.rb
+++ b/lib/sqlite3/version.rb
@@ -36,7 +36,7 @@ module SQLite3
MAJOR = 1
MINOR = 1
- TINY = 0
+ TINY = 1
STRING = [ MAJOR, MINOR, TINY ].join( "." )
diff --git a/sqlite3-ruby.gemspec b/sqlite3-ruby.gemspec
index d866f0f..4fe75be 100644
--- a/sqlite3-ruby.gemspec
+++ b/sqlite3-ruby.gemspec
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.summary = "SQLite3/Ruby is a module to allow Ruby scripts to interface with a SQLite3 database."
- s.files = Dir.glob("{doc,ext,lib,test}/**/*").delete_if { |item| item.include?( "CVS" ) }
+ s.files = Dir.glob("{doc,ext,lib,test}/**/*")
s.files.concat [ "LICENSE", "README", "ChangeLog" ]
s.require_path = 'lib'
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
s.test_suite_file = "test/tests.rb"
s.author = "Jamis Buck"
- s.email = "jgb3@email.byu.edu"
+ s.email = "jamis@37signals.com"
s.homepage = "http://sqlite-ruby.rubyforge.org/sqlite3"
end