public
Description: bindings for the SQLite 2.x embedded database
Homepage: http://sqlite-ruby.rubyforge.org/
Clone URL: git://github.com/jamis/sqlite-ruby.git
sqlite-ruby / sqlite-ruby.gemspec
100644 30 lines (20 sloc) 0.824 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/sqlite/version"
 
Gem::Specification.new do |s|
 
   s.name = 'sqlite-ruby'
   s.version = SQLite::Version::STRING
   s.platform = Gem::Platform::RUBY
   s.required_ruby_version = ">=1.8.0"
 
   s.summary = "SQLite/Ruby is a module to allow Ruby scripts to interface with a SQLite database."
 
   s.files = Dir.glob("{doc,ext,lib,test}/**/*").delete_if { |item| item.include?( "CVS" ) }
   s.files.concat [ "LICENSE", "README", "ChangeLog" ]
 
   s.require_path = 'lib'
   s.extensions << 'ext/extconf.rb'
   s.autorequire = 'sqlite'
 
   s.has_rdoc = true
   s.extra_rdoc_files = [ "README", "ext/sqlite-api.c" ]
   s.rdoc_options = [ "--main", "README" ]
 
   s.test_suite_file = "test/tests.rb"
 
   s.author = "Jamis Buck"
   s.email = "jgb3@email.byu.edu"
   s.homepage = "http://sqlite-ruby.rubyforge.org"
 
end