Sha256: 72f87846dc920398cd21710ba8333024ee1bc12bfb10a5ab41ea46a5e646e5d6

Contents?: true

Size: 1.45 KB

Versions: 9

Compression:

Stored size: 1.45 KB

Contents

# -*- 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") + 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.add_runtime_dependency     'mini_portile2', '~> 2.0' # Keep this version in sync with the one in extconf.rb !
  s.add_development_dependency 'rake', '~> 10.4'
  s.add_development_dependency 'rake-compiler', '0.9.5'
  s.add_development_dependency 'rake-compiler-dock', '~> 0.5.1'
  s.add_development_dependency 'minitest', '~> 5.6'
  s.add_development_dependency 'connection_pool', '~> 2.2'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
tiny_tds-1.0.4-x86-mingw32 tiny_tds.gemspec
tiny_tds-1.0.4-x64-mingw32 tiny_tds.gemspec
tiny_tds-1.0.4 tiny_tds.gemspec
tiny_tds-1.0.3-x86-mingw32 tiny_tds.gemspec
tiny_tds-1.0.3-x64-mingw32 tiny_tds.gemspec
tiny_tds-1.0.3 tiny_tds.gemspec
tiny_tds-1.0.2-x86-mingw32 tiny_tds.gemspec
tiny_tds-1.0.2-x64-mingw32 tiny_tds.gemspec
tiny_tds-1.0.2 tiny_tds.gemspec