forked from rails-sqlserver/tiny_tds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtiny_tds.gemspec
30 lines (29 loc) · 1.5 KB
/
tiny_tds.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
28
29
30
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'tiny_tds/version'
Gem::Specification.new do |s|
s.name = 'tiny_tds'
s.version = TinyTds::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Ken Collins', 'Erik Bryn', 'Will Bond']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://github.com/rails-sqlserver/tiny_tds'
s.summary = 'TinyTDS - A modern, simple and fast FreeTDS library for Ruby using DB-Library.'
s.description = 'TinyTDS - A modern, simple and fast FreeTDS library for Ruby using DB-Library. Developed for the ActiveRecord SQL Server adapter.'
s.files = `git ls-files`.split("\n") + Dir.glob('exe/*')
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 = ['--charset=UTF-8']
s.extensions = ['ext/tiny_tds/extconf.rb']
s.license = 'MIT'
s.required_ruby_version = '>= 2.0.0'
s.metadata['msys2_mingw_dependencies'] = 'freetds'
s.add_development_dependency 'mini_portile2', '~> 2.0'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rake-compiler', '~> 1.0'
s.add_development_dependency 'rake-compiler-dock', '~> 1.0'
s.add_development_dependency 'minitest', '~> 5.6'
s.add_development_dependency 'connection_pool', '~> 2.2'
s.add_development_dependency 'toxiproxy', '~> 2.0.0'
end