tiny_tds 0.9.5.beta.10-x86-mingw32 → 0.9.5.beta.11-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/defncopy +1 -1
- data/bin/tsql +1 -1
- data/ext/tiny_tds/extconsts.rb +1 -1
- data/lib/tiny_tds/bin.rb +10 -4
- data/ports/patches/freetds/{0.95.78 → 0.95.80}/0001-mingw_missing_inet_pton.diff +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13457f00e3296a5ecf825d62a2058ec6c2b049b9
|
4
|
+
data.tar.gz: b157daa2f311358383b566ce6b4b094fc8043e2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3127e52a425e75990f0acf3f1c6ac690abdbfd2a749c54a32809d78574c81cfdde60f3cb905ffeb8d6776ddc6ce7de7820f4d8ccf75a4f41aeb33ab8038f657d
|
7
|
+
data.tar.gz: 41f723a2e11cac417010fcdfb02596297658c5af96839fd413fa7991d3c191645801dbd6399c540ebf5890852f376dffd68fb6141f43f434da69cd4b9d419fb0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.5.beta.
|
1
|
+
0.9.5.beta.11
|
data/bin/defncopy
CHANGED
data/bin/tsql
CHANGED
data/ext/tiny_tds/extconsts.rb
CHANGED
@@ -5,7 +5,7 @@ ICONV_SOURCE_URI = "http://ftp.gnu.org/pub/gnu/libiconv/libiconv-#{ICONV_VERSION
|
|
5
5
|
OPENSSL_VERSION = ENV['TINYTDS_OPENSSL_VERSION'] || '1.0.2e'
|
6
6
|
OPENSSL_SOURCE_URI = "http://www.openssl.org/source/openssl-#{OPENSSL_VERSION}.tar.gz"
|
7
7
|
|
8
|
-
FREETDS_VERSION = ENV['TINYTDS_FREETDS_VERSION'] || "0.95.
|
8
|
+
FREETDS_VERSION = ENV['TINYTDS_FREETDS_VERSION'] || "0.95.80"
|
9
9
|
FREETDS_VERSION_INFO = Hash.new { |h,k|
|
10
10
|
h[k] = {files: "ftp://ftp.freetds.org/pub/freetds/stable/freetds-#{k}.tar.bz2"}
|
11
11
|
}
|
data/lib/tiny_tds/bin.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require_relative './version'
|
2
|
+
require 'shellwords'
|
2
3
|
|
3
4
|
module TinyTds
|
4
5
|
class Bin
|
@@ -14,7 +15,7 @@ module TinyTds
|
|
14
15
|
def exe(name, *args)
|
15
16
|
bin = new(name)
|
16
17
|
puts bin.info
|
17
|
-
|
18
|
+
bin.run(*args)
|
18
19
|
end
|
19
20
|
|
20
21
|
end
|
@@ -25,6 +26,12 @@ module TinyTds
|
|
25
26
|
@exefile = find_exe
|
26
27
|
end
|
27
28
|
|
29
|
+
def run(*args)
|
30
|
+
return nil unless path
|
31
|
+
Kernel.system Shellwords.join(args.unshift(path))
|
32
|
+
$?.to_i
|
33
|
+
end
|
34
|
+
|
28
35
|
def path
|
29
36
|
return @path if defined?(@path)
|
30
37
|
@path = @exefile && File.exists?(@exefile) ? @exefile : which
|
@@ -38,13 +45,12 @@ module TinyTds
|
|
38
45
|
private
|
39
46
|
|
40
47
|
def find_bin
|
41
|
-
File.join ROOT, 'bin',
|
48
|
+
File.join ROOT, 'bin', name
|
42
49
|
end
|
43
50
|
|
44
51
|
def find_exe
|
45
52
|
EXTS.each do |ext|
|
46
|
-
f = File.join ROOT, 'exe', "#{
|
47
|
-
puts f.inspect
|
53
|
+
f = File.join ROOT, 'exe', "#{name}#{ext}"
|
48
54
|
return f if File.exists?(f)
|
49
55
|
end
|
50
56
|
nil
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiny_tds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.5.beta.
|
4
|
+
version: 0.9.5.beta.11
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Ken Collins
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-01-
|
13
|
+
date: 2016-01-16 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mini_portile2
|
@@ -144,7 +144,7 @@ files:
|
|
144
144
|
- ports/i686-w64-mingw32/bin/ssleay32-1.0.2e-i686-w64-mingw32.dll
|
145
145
|
- ports/patches/freetds/0.91.112/Makefile.in.diff
|
146
146
|
- ports/patches/freetds/0.91.112/dblib-30-char-username.diff
|
147
|
-
- ports/patches/freetds/0.95.
|
147
|
+
- ports/patches/freetds/0.95.80/0001-mingw_missing_inet_pton.diff
|
148
148
|
- test/appveyor/dbsetup.ps1
|
149
149
|
- test/appveyor/dbsetup.sql
|
150
150
|
- test/benchmark/query.rb
|