forked from kashif/postgres-pr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres-pr.gemspec
More file actions
19 lines (15 loc) · 788 Bytes
/
postgres-pr.gemspec
File metadata and controls
19 lines (15 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "postgres-pr/version"
spec = Gem::Specification.new do |s|
s.name = 'postgres-pr'
s.version = PostgresPR::VERSION
s.summary = %q{A pure Ruby interface to the PostgreSQL (>= 7.4) database.}
s.files = %w(README Rakefile) + Dir.glob("{lib,examples}/**/*")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.require_path = 'lib'
s.authors = ["Michael Neumann", "Jeremy Evans", "Alexander E. Fischer", "Aaron Hamid", "Rahim Packir Saibo", "Lars Christensen", "Kashif Rasul"]
s.email = ["mneumann@ntecs.de", "code@jeremyevans.net", "aef@raxys.net", "larsch@belunktum.dk", "kashif@nomad-labs.com"]
s.homepage = "https://github.com/kashif/em_postgresql"
s.licenses = ["Ruby", "GPL"]
end