forked from jruby/activerecord-jdbc-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activerecord-jdbc-adapter.gemspec
23 lines (22 loc) · 1.17 KB
/
activerecord-jdbc-adapter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'arjdbc/version'
version = ArJdbc::Version::VERSION
Gem::Specification.new do |s|
s.name = "activerecord-jdbc-adapter"
s.version = version
s.platform = Gem::Platform::RUBY
s.authors = ["Nick Sieger, Ola Bini and JRuby contributors"]
s.email = %q{nick@nicksieger.com, ola.bini@gmail.com}
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
s.summary = %q{JDBC adapter for ActiveRecord, for use within JRuby on Rails.}
s.description = %q{activerecord-jdbc-adapter is a database adapter for Rails\' ActiveRecord
component that can be used with JRuby[http://www.jruby.org/]. It allows use of
virtually any JDBC-compliant database with your JRuby on Rails application.}
s.files = `git ls-files`.split("\n").reject {|v| v =~ /^(activerecord-jdbc[^-]|jdbc-)/}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f) }
s.require_paths = ["lib"]
s.rdoc_options = ["--main", "README.txt", "-SHN", "-f", "darkfish"]
s.rubyforge_project = %q{jruby-extras}
end