summaryrefslogtreecommitdiffstats
path: root/sqlite3-ruby.gemspec
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-01-09 15:04:16 +0000
committerJamis Buck <jamis@37signals.com>2005-01-09 15:04:16 +0000
commitc51fa9fc3d7c0ec6f59bcaf3d352fae9325857e2 (patch)
treefa6c5fdee64da937145d594348100b03225a4207 /sqlite3-ruby.gemspec
downloadthird_party-sqlite3-ruby-c51fa9fc3d7c0ec6f59bcaf3d352fae9325857e2.tar.gz
third_party-sqlite3-ruby-c51fa9fc3d7c0ec6f59bcaf3d352fae9325857e2.tar.xz
third_party-sqlite3-ruby-c51fa9fc3d7c0ec6f59bcaf3d352fae9325857e2.zip
Changed layout to support tagging and branching
Diffstat (limited to 'sqlite3-ruby.gemspec')
-rw-r--r--sqlite3-ruby.gemspec30
1 files changed, 30 insertions, 0 deletions
diff --git a/sqlite3-ruby.gemspec b/sqlite3-ruby.gemspec
new file mode 100644
index 0000000..d866f0f
--- /dev/null
+++ b/sqlite3-ruby.gemspec
@@ -0,0 +1,30 @@
+require "./lib/sqlite3/version"
+
+Gem::Specification.new do |s|
+
+ s.name = 'sqlite3-ruby'
+ 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}/**/*").delete_if { |item| item.include?( "CVS" ) }
+ s.files.concat [ "LICENSE", "README", "ChangeLog" ]
+
+ s.require_path = 'lib'
+ s.autorequire = 'sqlite3'
+
+ s.extensions << 'ext/sqlite3_api/extconf.rb'
+
+ s.has_rdoc = true
+ s.extra_rdoc_files = [ "README" ]
+ 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/sqlite3"
+
+end