forked from SQLDroid/SQLDroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqldroid.gemspec
More file actions
23 lines (20 loc) · 811 Bytes
/
Copy pathsqldroid.gemspec
File metadata and controls
23 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'sqldroid/version'
Gem::Specification.new do |s|
s.name = 'sqldroid'
s.version = SQLDroid::VERSION
s.authors = %w(donv)
s.email = %w(uwe@kubosch.no)
s.homepage = 'http://sqldroid.org/'
s.summary = %q{SQLDroid is a JDBC driver for Android's sqlite database (android.database.sqlite.SQLiteDatabase).}
s.description = %q{SQLDroid is a JDBC driver for Android's sqlite database (android.database.sqlite.SQLiteDatabase).
This gem makes the JAR available to your JRuby app.}
# s.rubyforge_project = "sqldroid"
s.files = Dir['lib/**/*']
s.test_files = []
s.executables = []
s.require_paths = %w(lib)
s.platform = 'java'
s.licenses = %w(MIT EPL-1.0)
end