Sha256: 86bcfb36733ccae31a92e4bddfca58fd2a7c092e1a99037c43f37f5cf9988da1
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "tiny_tds/version" Gem::Specification.new do |s| s.name = 'tiny_tds_vagas' s.version = TinyTds::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Equipe P&D Vagas', 'Ken Collins', 'Erik Bryn', 'Will Bond'] s.email = ['equipepdp@vagas.com.br', 'ken@metaskills.net', 'will@wbond.net'] s.homepage = 'http://github.com/VAGAScom/tiny_tds_vagas' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tiny_tds_vagas-1.0.5 | tiny_tds.gemspec |