do_oracle 0.10.16-x86-mswin32-60 → 0.10.17-x86-mswin32-60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db457be1e8143ae44c00597a92921858680fa5e1
4
- data.tar.gz: dbb819466b778eef27afd31dd0abd8668f6f1c76
3
+ metadata.gz: e65f65f551b31a0306d5c2603e39373736ad3f8b
4
+ data.tar.gz: 02dd2617abe14e0ede68849c83c3a459cea30c43
5
5
  SHA512:
6
- metadata.gz: 9e93beac759325edb498d65d0bb4b6375072cd7b3df03ff4fb75a762ef0ce3d8e748785978c3a7628c463dfdc5299506974ffd5eb8cd82486e13b2e65173a6db
7
- data.tar.gz: 7dc0958a9adb530a74998baae0814393ab07512d5e6991b7767bd057490d86efc7cba809fc45f5530adf5332a17baef0580def7affd669f93bfc743ffe44305f
6
+ metadata.gz: 3b9525d1fc486145fd9eb15cfebb2d8ec04f74bc3fe84a3d10b018a8ff4ce7747f4ad006c0b16513f7f47d99d9c38cebcaf73ba33fb27499bcba85d330091afa
7
+ data.tar.gz: 34f2e53857d4314dd9ec4e1d5eceb26c76055012c9e28bcb52d2fde3d1b2df5d652d51435a1d85394edfb2dcff2a6b08caf29fc8cb81bbf23d627a63331a95eb
data/ChangeLog.markdown CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.10.17 2016-01-24
2
+
3
+ No changes
4
+
1
5
  ## 0.10.16 2015-05-17
2
6
 
3
7
  No changes
@@ -9,6 +9,9 @@
9
9
  #include <math.h>
10
10
  #include <ctype.h>
11
11
  #include <time.h>
12
+ #ifndef _WIN32
13
+ #include <sys/time.h>
14
+ #endif
12
15
 
13
16
  #define DO_ID_CONST_GET rb_intern("const_get")
14
17
 
@@ -65,6 +68,7 @@ static ID DO_ID_TO_S;
65
68
  static ID DO_ID_TO_F;
66
69
 
67
70
  static ID DO_ID_UTC_OFFSET;
71
+ static ID DO_ID_ZONE;
68
72
  static ID DO_ID_FULL_CONST_GET;
69
73
 
70
74
  static ID DO_ID_PARSE;
@@ -167,13 +171,7 @@ static VALUE parse_date(VALUE r_value) {
167
171
  static VALUE parse_date_time(VALUE r_value) {
168
172
  VALUE time_array;
169
173
  int year, month, day, hour, min, sec;
170
- // int usec;
171
- long int gmt_offset;
172
-
173
- // time_t rawtime;
174
- // struct tm * timeinfo;
175
-
176
- // int tokens_read, max_tokens;
174
+ VALUE zone;
177
175
 
178
176
  if (rb_obj_class(r_value) == rb_cDateTime) {
179
177
  return r_value;
@@ -185,11 +183,10 @@ static VALUE parse_date_time(VALUE r_value) {
185
183
  hour = NUM2INT(rb_ary_entry(time_array, 2));
186
184
  min = NUM2INT(rb_ary_entry(time_array, 1));
187
185
  sec = NUM2INT(rb_ary_entry(time_array, 0));
186
+ zone = rb_funcall(r_value, DO_ID_ZONE, 0 );
188
187
 
189
- gmt_offset = NUM2INT(rb_funcall(r_value, DO_ID_UTC_OFFSET, 0 ));
190
-
191
- return rb_funcall(rb_cDateTime, DO_ID_NEW, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day),
192
- INT2NUM(hour), INT2NUM(min), INT2NUM(sec), INT2NUM(gmt_offset));
188
+ return rb_funcall(rb_cDateTime, DO_ID_NEW, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day),
189
+ INT2NUM(hour), INT2NUM(min), INT2NUM(sec), zone);
193
190
  } else {
194
191
  // Something went terribly wrong
195
192
  rb_raise(eDO_DataError, "Couldn't parse datetime from class %s object", rb_obj_classname(r_value));
@@ -729,6 +726,7 @@ void Init_do_oracle() {
729
726
  DO_ID_TO_F = rb_intern("to_f");
730
727
 
731
728
  DO_ID_UTC_OFFSET = rb_intern("utc_offset");
729
+ DO_ID_ZONE = rb_intern("zone");
732
730
  DO_ID_FULL_CONST_GET = rb_intern("full_const_get");
733
731
 
734
732
  DO_ID_PARSE = rb_intern("parse");
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module DataObjects
2
2
  module Oracle
3
- VERSION = '0.10.16'
3
+ VERSION = '0.10.17'
4
4
  end
5
5
  end
data/tasks/compile.rake CHANGED
@@ -32,7 +32,7 @@ begin
32
32
  # Gem::Specification API.
33
33
  gem.dependencies.delete_if { |d| d.name == 'ruby-oci8'}
34
34
 
35
- gem.add_dependency "do_jdbc", '0.10.16'
35
+ gem.add_dependency "do_jdbc", '0.10.17'
36
36
  end
37
37
  end
38
38
  rescue LoadError
data/tasks/release.rake CHANGED
@@ -3,7 +3,7 @@ task :build_all do
3
3
  `rake clean`
4
4
  `rake build`
5
5
  `rake java gem`
6
- `rake cross native gem RUBY_CC_VERSION=1.8.7:1.9.3:2.0.0:2.1.5:2.2.0`
6
+ `rake cross native gem RUBY_CC_VERSION=1.8.7:1.9.3:2.0.0:2.1.8:2.2.4:2.3.0`
7
7
  end
8
8
 
9
9
  desc 'Release all gems (native, binaries for JRuby and Windows)'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: do_oracle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.16
4
+ version: 0.10.17
5
5
  platform: x86-mswin32-60
6
6
  authors:
7
7
  - Raimonds Simanovskis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-17 00:00:00.000000000 Z
11
+ date: 2016-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: data_objects
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.10.16
19
+ version: 0.10.17
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.10.16
26
+ version: 0.10.17
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rspec
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -101,6 +101,7 @@ files:
101
101
  - lib/do_oracle/2.0/do_oracle.so
102
102
  - lib/do_oracle/2.1/do_oracle.so
103
103
  - lib/do_oracle/2.2/do_oracle.so
104
+ - lib/do_oracle/2.3/do_oracle.so
104
105
  homepage:
105
106
  licenses: []
106
107
  metadata: {}