public
Fork of jamis/sqlite3-ruby
Description: Rubygem with embedded Sqlite3 with full text search (fts3) enabled
Homepage: http://sqlite-ruby.rubyforge.org/sqlite3/
Clone URL: git://github.com/nullstyle/sqlort.git
Click here to lend your support to: sqlort and make a donation at www.pledgie.com !
sqlort / sqlort.gemspec
100644 30 lines (19 sloc) 0.773 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require "./lib/sqlite3/version"
 
Gem::Specification.new do |s|
 
   s.name = 'sqlort'
   s.version = SQLite3::Version::STRING
   s.platform = Gem::Platform::RUBY
   s.required_ruby_version = ">=1.8.0"
 
   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}/**/*")
   s.files.concat [ "LICENSE", "README.rdoc", "CHANGELOG.rdoc" ]
 
   s.require_path = 'lib'
 
   s.extensions << 'ext/sqlite3_api/extconf.rb'
 
   s.has_rdoc = true
   s.extra_rdoc_files = [ "README.rdoc" ]
   s.rdoc_options = [ "--main", "README.rdoc" ]
 
   s.test_suite_file = "test/tests.rb"
 
   s.author = "Jamis Buck"
   s.email = "jamis@37signals.com"
   s.homepage = "http://sqlite-ruby.rubyforge.org/sqlite3"
 
end