nullstyle / sqlort forked from jamis/sqlite3-ruby

Rubygem with embedded Sqlite3 with full text search (fts3) enabled

This URL has Read+Write access

sqlort / sqlort.gemspec
c51fa9fc » jamis 2005-01-09 Changed layout to support t... 1 require "./lib/sqlite3/version"
2
3 Gem::Specification.new do |s|
4
161d6558 » nullstyle 2008-10-10 implement first steps to sq... 5 s.name = 'sqlort'
c51fa9fc » jamis 2005-01-09 Changed layout to support t... 6 s.version = SQLite3::Version::STRING
7 s.platform = Gem::Platform::RUBY
8 s.required_ruby_version = ">=1.8.0"
9
10 s.summary = "SQLite3/Ruby is a module to allow Ruby scripts to interface with a SQLite3 database."
11
e0ad35c6 » jamis 2005-09-11 Update gemspec and version.... 12 s.files = Dir.glob("{doc,ext,lib,test}/**/*")
056db339 » jamis 2008-05-30 rename README to README.rdoc. 13 s.files.concat [ "LICENSE", "README.rdoc", "CHANGELOG.rdoc" ]
c51fa9fc » jamis 2005-01-09 Changed layout to support t... 14
15 s.require_path = 'lib'
16
17 s.extensions << 'ext/sqlite3_api/extconf.rb'
18
19 s.has_rdoc = true
056db339 » jamis 2008-05-30 rename README to README.rdoc. 20 s.extra_rdoc_files = [ "README.rdoc" ]
21 s.rdoc_options = [ "--main", "README.rdoc" ]
c51fa9fc » jamis 2005-01-09 Changed layout to support t... 22
23 s.test_suite_file = "test/tests.rb"
24
25 s.author = "Jamis Buck"
e0ad35c6 » jamis 2005-09-11 Update gemspec and version.... 26 s.email = "jamis@37signals.com"
c51fa9fc » jamis 2005-01-09 Changed layout to support t... 27 s.homepage = "http://sqlite-ruby.rubyforge.org/sqlite3"
28
29 end