forked from rails-sqlserver/tiny_tds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiny_tds.gemspec
20 lines (19 loc) · 994 Bytes
/
tiny_tds.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- 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']
s.email = ['[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") - ["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']
end