forked from rails-sqlserver/tiny_tds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiny_tds.gemspec
26 lines (25 loc) · 1.33 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
# -*- encoding: utf-8 -*-
$:.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 = ['ken@metaskills.net', 'will@wbond.net']
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") - ["tiny_tds.gemspec"]
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.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'mini_portile', "~> 0.5.1"
s.add_development_dependency 'rake-compiler', "~> 0.9.1"
s.add_development_dependency 'activesupport', '~> 3.0'
s.add_development_dependency 'minitest'
s.add_development_dependency 'connection_pool', '~> 0.9.2'
end