Skip to content

Using the latest ssl version as default #427

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/tiny_tds/extconsts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ICONV_VERSION = ENV['TINYTDS_ICONV_VERSION'] || "1.15"
ICONV_SOURCE_URI = "http://ftp.gnu.org/pub/gnu/libiconv/libiconv-#{ICONV_VERSION}.tar.gz"

OPENSSL_VERSION = ENV['TINYTDS_OPENSSL_VERSION'] || '1.1.0e'
OPENSSL_VERSION = ENV['TINYTDS_OPENSSL_VERSION'] || '1.1.0j'
OPENSSL_SOURCE_URI = "https://www.openssl.org/source/openssl-#{OPENSSL_VERSION}.tar.gz"

FREETDS_VERSION = ENV['TINYTDS_FREETDS_VERSION'] || "1.00.27"
Expand Down
6 changes: 3 additions & 3 deletions tiny_tds.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'tiny_tds/version'

Gem::Specification.new do |s|
s.name = 'tiny_tds'
s.name = 'vm_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.email = ['ajithks@vmware.com']
s.homepage = 'https://github.com/Ajithprojs/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/*')
Expand Down