ruby-oci8 2.2.11-x86-mingw32 → 2.2.12-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
  SHA256:
3
- metadata.gz: f5f1a5ff7457f215658d7a19230515f74981e103a24c0177f44c37e7e07c2320
4
- data.tar.gz: 1329a361da85b4de8afc67bf3eed9325855f79c0a84abefbc6406ca5c8a0e29a
3
+ metadata.gz: 631ba8e42861f615caee28df738ede602aaa3977c05cc601b353516ce5810f6c
4
+ data.tar.gz: 589d194f03b126fd6a0f2efbaf384533c69db981832ff7b7e10ae869a9a64186
5
5
  SHA512:
6
- metadata.gz: 7bbc81339871add8889563ff8d9bdfbc2d7cf77c4270125cea31a9dea75c4f504946a5fd98180119d573dc8480fcc1f12a2cc25dbc68b33bc5c79cf2383f0a05
7
- data.tar.gz: b46c78cc1474f325a990e14ac9151aea442f0aad4df5cfadb4877d7a8463f3df7689a729ffc6e2788607309bb97a3190e1be8439d7f9de3bc4fda0944833c786
6
+ metadata.gz: 774e9ab8bb6d62d6b0b0e87131d09a686a4b35f1889c7575ae0d6f30b8bc28b499c2d88b9a99bba32b2dda8af7cb4b0e06249dc720f7393f84f931972548cf3b
7
+ data.tar.gz: fd4ca300d276aae13817e0fd9fc5166ac2dbf65e61e23a6a0687295501c0f5d05862aefa4c2c034934d21aadc80c310955dbd6449edc80df8603defba4eda322
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
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: x86-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,11 +59,11 @@ 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
66
65
  - lib/oci8lib_310.so
66
+ - lib/oci8lib_320.so
67
67
  - lib/ruby-oci8.rb
68
68
  - metaconfig
69
69
  - pre-distclean.rb
@@ -112,15 +112,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - ">="
114
114
  - !ruby/object:Gem::Version
115
- version: 2.5.0
115
+ version: 2.6.0
116
116
  required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  requirements:
118
118
  - - ">="
119
119
  - !ruby/object:Gem::Version
120
120
  version: '0'
121
121
  requirements: []
122
- rubyforge_project:
123
- rubygems_version: 2.7.3
122
+ rubygems_version: 3.0.1
124
123
  signing_key:
125
124
  specification_version: 4
126
125
  summary: Ruby interface for Oracle using OCI8 API
data/lib/oci8lib_250.so DELETED
Binary file