tiny_tds 0.9.5.beta.6-x86-mingw32 → 0.9.5.beta.7-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/exe/defncopy.exe +0 -0
- data/exe/tsql.exe +0 -0
- data/ext/tiny_tds/result.c +2 -1
- data/lib/tiny_tds/2.0/tiny_tds.so +0 -0
- data/lib/tiny_tds/2.1/tiny_tds.so +0 -0
- data/lib/tiny_tds/2.2/tiny_tds.so +0 -0
- data/ports/i686-w64-mingw32/bin/libeay32-1.0.2e-i686-w64-mingw32.dll +0 -0
- data/ports/i686-w64-mingw32/bin/libiconv-2.dll +0 -0
- data/ports/i686-w64-mingw32/bin/libsybdb-5.dll +0 -0
- data/ports/i686-w64-mingw32/bin/ssleay32-1.0.2e-i686-w64-mingw32.dll +0 -0
- data/test/schema_test.rb +0 -1
- data/test/test_helper.rb +0 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ca68e81e7b82558d91ce4d9e799def7f73b2efe
|
4
|
+
data.tar.gz: 3468e9dabcef7dfac92b81accec0bb868baf26e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1577555214f6f39635737f2c10ea01e9a799f9f2747c001efd70f9372de38a7707936339e617f28ff0a75b9b3e7252f8e66a66fcb420cd5c9c8035cf005e699
|
7
|
+
data.tar.gz: 0849c9a579d2b3e0da27cbe60a3ad058396a874161a06d005e8f892e9a582694c08ff466cfcb3d7ecd1349894e76c4ca7d93f171416afbeaec4aa976ce3c74be
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.5.beta.
|
1
|
+
0.9.5.beta.7
|
data/exe/defncopy.exe
CHANGED
Binary file
|
data/exe/tsql.exe
CHANGED
Binary file
|
data/ext/tiny_tds/result.c
CHANGED
@@ -307,7 +307,8 @@ static VALUE rb_tinytds_result_fetch_row(VALUE self, ID timezone, int symbolize_
|
|
307
307
|
break;
|
308
308
|
}
|
309
309
|
case 43: { // SYBMSDATETIMEOFFSET
|
310
|
-
|
310
|
+
long long numerator = ((long)dr2.second * (long long)1000000000) + (long long)dr2.nanosecond;
|
311
|
+
VALUE rational_sec = rb_Rational(LL2NUM(numerator), opt_onebil);
|
311
312
|
val = rb_funcall(rb_cTime, intern_new, 7, INT2NUM(dr2.year), INT2NUM(dr2.month), INT2NUM(dr2.day), INT2NUM(dr2.hour), INT2NUM(dr2.minute), rational_sec, INT2NUM(dr2.tzone*60));
|
312
313
|
break;
|
313
314
|
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/test/schema_test.rb
CHANGED
data/test/test_helper.rb
CHANGED
@@ -134,10 +134,6 @@ module TinyTds
|
|
134
134
|
assert_equal Encoding.find('UTF-8'), value.encoding
|
135
135
|
end
|
136
136
|
|
137
|
-
def windows_32bit?
|
138
|
-
RbConfig::CONFIG['host_os'] == 'mingw32' && RbConfig::CONFIG['host'] =~ /i686-pc/
|
139
|
-
end
|
140
|
-
|
141
137
|
def rubyRbx?
|
142
138
|
RUBY_DESCRIPTION =~ /rubinius/i
|
143
139
|
end
|
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.7
|
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:
|
13
|
+
date: 2016-01-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mini_portile2
|