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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a843592de713a6fe13663f0848584e37a4c8a7b
4
- data.tar.gz: ae317dab98daa440591a15cdd9ec922096f15f70
3
+ metadata.gz: 13457f00e3296a5ecf825d62a2058ec6c2b049b9
4
+ data.tar.gz: b157daa2f311358383b566ce6b4b094fc8043e2a
5
5
  SHA512:
6
- metadata.gz: 35b0e091cbcbda9c926a44c04f8787cac36f25d801b384736eefd158f5c93719ccbd756d4f415ca67ee73448fdd11297cec5ba2f39ce4424950a35ab8e0be563
7
- data.tar.gz: 7bfc9756878ad9a167089c7f7cf6b1bcf080b86ccd2f97c644f5e0f81df30d7dbb6dd35366c1f9adfe5dd914c070b30de366c7d85dee7ec012d2b8026237a5b9
6
+ metadata.gz: 3127e52a425e75990f0acf3f1c6ac690abdbfd2a749c54a32809d78574c81cfdde60f3cb905ffeb8d6776ddc6ce7de7820f4d8ccf75a4f41aeb33ab8038f657d
7
+ data.tar.gz: 41f723a2e11cac417010fcdfb02596297658c5af96839fd413fa7991d3c191645801dbd6399c540ebf5890852f376dffd68fb6141f43f434da69cd4b9d419fb0
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.5.beta.10
1
+ 0.9.5.beta.11
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
  require_relative '../lib/tiny_tds/bin'
3
- TinyTds::Bin.exe 'defncopy', *ARGV
3
+ Process.exit TinyTds::Bin.exe('defncopy', *ARGV)
data/bin/tsql CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
  require_relative '../lib/tiny_tds/bin'
3
- TinyTds::Bin.exe 'tsql', *ARGV
3
+ Process.exit TinyTds::Bin.exe('tsql', *ARGV)
@@ -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.78"
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
  }
@@ -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
- Kernel.system bin.path, *args if bin.path
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', @name
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', "#{@name}#{ext}"
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
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.10
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-03 00:00:00.000000000 Z
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.78/0001-mingw_missing_inet_pton.diff
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