-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtusks.gemspec
27 lines (22 loc) · 1.14 KB
/
tusks.gemspec
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
26
27
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'tusks/version'
Gem::Specification.new do |s|
s.name = 'tusks'
s.version = Tusks::VERSION
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.author = 'Craig McCown'
s.email = 'craigrmccown@gmail.com'
s.homepage = 'https://github.com/craigrmccown/tusks'
s.summary = 'Easily call PostgreSQL functions from Ruby.'
s.description = 'Tusks is built for Ruby application developers who want to access their Postgres database exclusively using functions. It abstracts away ugly serialization functionality, enables easy transaction management, and provides a declarative way to define a clean interface to your Postgres functions.'
s.post_install_message = 'Thanks for using Tusks! Log and track issues at: https://github.com/craigrmccown/tusks/issues'
s.required_ruby_version = '2.1.0'
s.required_rubygems_version = '2.2.2'
s.files = `git ls-files -z`.split("\x0")
s.test_files = Dir.glob('spec/**/*')
s.require_paths = ['lib']
s.add_development_dependency 'rspec', '~> 3.0', '>= 3.0.0'
s.add_runtime_dependency 'pg', '~> 0.17', '>= 0.17.1'
end