-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjdbc-sqlite3.gemspec
More file actions
25 lines (21 loc) · 810 Bytes
/
jdbc-sqlite3.gemspec
File metadata and controls
25 lines (21 loc) · 810 Bytes
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
# -*- encoding: utf-8 -*-
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'jdbc/sqlite3'
version = Jdbc::SQLite3::VERSION
Gem::Specification.new do |s|
s.name = %q{jdbc-sqlite3}
s.version = version
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
s.date = %q{2011-06-16}
s.description = %q{Install this gem and require 'sqlite3' within JRuby to load the driver.}
s.email = %q{nick@nicksieger.com, ola.bini@gmail.com}
s.files = [
"Rakefile", "README.txt", "LICENSE.txt",
*Dir["lib/**/*"].to_a
]
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{jruby-extras}
s.summary = %q{SQLite3 JDBC driver for Java and SQLite3/ActiveRecord-JDBC.}
end