ruby-oci8 2.2.11-x64-mingw32 → 2.2.12-x64-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
  SHA256:
3
- metadata.gz: 8e2ce479a8ecdfd4bdf6c7d64a9afea01ed021bac819218ef7e9988aa40d0ecd
4
- data.tar.gz: 06ef80242421f19f5021968df137dd1f89a3221ac1c4fb520d176db2e655f794
3
+ metadata.gz: 8598ca64aba3fc513d7e8cb5c6eba8579407c172d0cf7b7cb1ae876299a94bf7
4
+ data.tar.gz: 43ae930b4d66a3e8349095ec3f45b3d527c53aff320c7515e4a670d14987c304
5
5
  SHA512:
6
- metadata.gz: 24561b3c26a2ed35583de079c1575dac421bd644320275160ae96157bb5c09a5568f477c5401fc5f24d0bf8ff33a76e5e4539924ec9f2d92bd64d8316b300e65
7
- data.tar.gz: 730e3b1c126f182b2d1d733ab73328bc2d4694a1fbc4bf7e448cef78da3b695a0a84a7421f084e75f2e95b70b7ad1a687cc0b6229578855d414cc237df38895d
6
+ metadata.gz: c0ade3f647fa7315c9b895cc325f7f2e6de1b30949661500de5c5ebe12eecd725ba134d5bbde5160956a347c9077290dbcd971a1e38bf9803796913a65e57689
7
+ data.tar.gz: 2885a33f43aacbc05a0c14ebc74c3b799ebebf3f0eee172da28cd21691599491f78fd4bfb4c097df77ed7f5d9c624f58063979cfbb4549c2e44c3b3b64633e0b
data/ChangeLog CHANGED
@@ -1,3 +1,5 @@
1
+ This file has not been not updated. See commit log at https://github.com/kubo/ruby-oci8.
2
+
1
3
  2020-12-30 Kubo Takehiro <kubo@jiubao.org>
2
4
  * NEWS: Add changes between 2.2.8 and 2.2.9.
3
5
  * lib/oci8/version.rb: Update to 2.2.9.
data/NEWS CHANGED
@@ -1,5 +1,12 @@
1
1
  # @markup markdown
2
2
 
3
+ 2.2.12 (2022-12-30)
4
+ ===================
5
+
6
+ - Fix warning: undefining the allocator of T_DATA class OraNumber against Ruby 3.2.0dev. (GH-243)
7
+ - Fix warnings on tests and on compile.
8
+ - Remove code for old ruby versions.
9
+
3
10
  2.2.11 (2022-02-22)
4
11
  ===================
5
12
 
data/lib/oci8/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class OCI8
2
- VERSION = "2.2.11"
2
+ VERSION = "2.2.12"
3
3
  end
data/lib/oci8lib_260.so CHANGED
Binary file
data/lib/oci8lib_270.so CHANGED
Binary file
data/lib/oci8lib_300.so CHANGED
Binary file
data/lib/oci8lib_310.so CHANGED
Binary file
data/pre-distclean.rb CHANGED
@@ -1,6 +1,4 @@
1
- rm_f "#{curr_objdir}/lib/oci8.rb"
2
- rm_f "#{curr_objdir}/ext/oci8/oci8lib_18.map"
3
- rm_f "#{curr_objdir}/ext/oci8/oci8lib_191.map"
1
+ rm_f "#{curr_objdir}/ext/oci8/oci8lib_*.map"
4
2
  if RUBY_PLATFORM =~ /cygwin/
5
3
  rm_f "#{curr_objdir}/ext/oci8/OCI.def"
6
4
  rm_f "#{curr_objdir}/ext/oci8/libOCI.a"
data/test/test_object.rb CHANGED
@@ -1,12 +1,6 @@
1
1
  require 'oci8'
2
2
  require File.dirname(__FILE__) + '/config'
3
3
 
4
- class Time
5
- def inspect
6
- self.strftime("%Y-%m-%d %H:%M:%S.%N %:z")
7
- end
8
- end
9
-
10
4
  conn = OCI8.new($dbuser, $dbpass, $dbname)
11
5
  error_message = nil
12
6
  begin
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-oci8
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.11
4
+ version: 2.2.12
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Kubo Takehiro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-22 00:00:00.000000000 Z
11
+ date: 2022-12-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available
14
14
  with Oracle 10g or later including Oracle Instant Client.
@@ -59,7 +59,6 @@ files:
59
59
  - lib/oci8/oracle_version.rb
60
60
  - lib/oci8/properties.rb
61
61
  - lib/oci8/version.rb
62
- - lib/oci8lib_250.so
63
62
  - lib/oci8lib_260.so
64
63
  - lib/oci8lib_270.so
65
64
  - lib/oci8lib_300.so
@@ -112,15 +111,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
111
  requirements:
113
112
  - - ">="
114
113
  - !ruby/object:Gem::Version
115
- version: 2.5.0
114
+ version: 2.6.0
116
115
  required_rubygems_version: !ruby/object:Gem::Requirement
117
116
  requirements:
118
117
  - - ">="
119
118
  - !ruby/object:Gem::Version
120
119
  version: '0'
121
120
  requirements: []
122
- rubyforge_project:
123
- rubygems_version: 2.7.3
121
+ rubygems_version: 3.0.1
124
122
  signing_key:
125
123
  specification_version: 4
126
124
  summary: Ruby interface for Oracle using OCI8 API
data/lib/oci8lib_250.so DELETED
Binary file