ruby-oci8 2.2.8-x86-mingw32 → 2.2.9-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 627bf1ba67bc5f007c1b98de758d89c808b2a453e577bc4fd91b982ba8ccaccb
4
+ data.tar.gz: 615b00b36c6dc5de1b98e8174088094ca58b4438c3a8f00a46ef757ab63e8efc
5
+ SHA512:
6
+ metadata.gz: 75db53de248622e610950ad6ca7434435df16e767229496980212eae2c4b777eea845c252d69518444bc307c2d009bc5024840b0cf6434ee3bf687acdbe31d9f
7
+ data.tar.gz: 9c09c2b4c3d5f8991a1b4a8c4a2add5ad325b814d511f162d920681ed6a7ad22c06a1c985e2e6f9b7b737574d142ae30b582352420423be2c52b3f280e1a440c
data/ChangeLog CHANGED
@@ -1,3 +1,28 @@
1
+ 2020-12-30 Kubo Takehiro <kubo@jiubao.org>
2
+ * NEWS: Add changes between 2.2.8 and 2.2.9.
3
+ * lib/oci8/version.rb: Update to 2.2.9.
4
+ * mkpkg-win32.rb: remove unmaintained ruby versions from binary gems.
5
+
6
+ 2020-12-29 Kubo Takehiro <kubo@jiubao.org>
7
+ * ext/oci8/oraconf.rb: Support --with-instant-client-dir along with --with-instant-client-lib/include.
8
+ (GH-223)
9
+
10
+ 2020-12-29 Kubo Takehiro <kubo@jiubao.org>
11
+ * ext/oci8/hook_funcs.c: Fix hooking failure with truffleruby.
12
+ * test/test_break.rb: Fix to pass tests with truffleruby.
13
+
14
+ 2020-12-28 Kubo Takehiro <kubo@jiubao.org>
15
+ * mkpkg-win32.rb: Build binary gems for ruby 3.0 on Windows.
16
+
17
+ 2020-12-28 Kubo Takehiro <kubo@jiubao.org>
18
+ * ext/oci8/ocinumber.c: Suppress C compiler warning: enumeration value ‘RUBY_T_NONE’ not handled in switch
19
+
20
+ 2020-09-10 Kubo Takehiro <kubo@jiubao.org>
21
+ * ext/oci8/extconf.rb: Fix for TruffleRuby 20.2 or before.
22
+
23
+ 2020-09-08 Brandon Fish <brandon.j.fish@oracle.com>
24
+ * ext/oci8/extconf.rb, lib/oci8.rb: Handle truffleruby RUBY_ENGINE in case statements
25
+
1
26
  2020-01-11 Kubo Takehiro <kubo@jiubao.org>
2
27
  * NEWS: Add changes between 2.2.7 and 2.2.8.
3
28
  * lib/oci8/version.rb: Update to 2.2.8.
data/NEWS CHANGED
@@ -1,5 +1,21 @@
1
1
  # @markup markdown
2
2
 
3
+ 2.2.9 (2020-12-30)
4
+ ==================
5
+
6
+ - Support [TruffleRuby](https://github.com/oracle/truffleruby). (GH-225)
7
+
8
+ (contributed by Brandon Fish)
9
+
10
+ - Remove extension libraries for unmaintained ruby versions from binary gems.
11
+
12
+ Fixed issue
13
+ -----------
14
+
15
+ - Allow --with-instant-client-dir along with --with-instant-client-lib/include. (GH-223)
16
+
17
+ (reported by Victor Nawothnig)
18
+
3
19
  2.2.8 (2020-01-11)
4
20
  ==================
5
21
 
data/README.md CHANGED
@@ -2,7 +2,7 @@ Ruby-oci8
2
2
  =========
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/ruby-oci8.svg)](http://badge.fury.io/rb/ruby-oci8)
5
- [![Build Status](https://travis-ci.org/kubo/ruby-oci8.svg?branch=master)](https://travis-ci.org/kubo/ruby-oci8)
5
+ [![Build Status](https://travis-ci.com/kubo/ruby-oci8.svg?branch=master)](https://travis-ci.com/kubo/ruby-oci8)
6
6
 
7
7
  What is ruby-oci8
8
8
  -----------------
@@ -66,6 +66,8 @@ when 'rbx'
66
66
  so_basename += 'rbx'
67
67
  when 'jruby'
68
68
  raise "Ruby-oci8 doesn't support jruby because its C extension support is in development in jruby 1.6 and deprecated in jruby 1.7."
69
+ when 'truffleruby'
70
+ so_basename += 'truffleruby'
69
71
  else
70
72
  raise 'unsupported ruby engine: ' + RUBY_ENGINE
71
73
  end
@@ -1,3 +1,3 @@
1
1
  class OCI8
2
- VERSION = "2.2.8"
2
+ VERSION = "2.2.9"
3
3
  end
Binary file
Binary file
Binary file
Binary file
@@ -62,7 +62,7 @@ class TestBreak < Minitest::Test
62
62
  expect = []
63
63
  expect[PLSQL_DONE] = TIME_IN_PLSQL
64
64
  expect[OCIBREAK] = "Invalid status"
65
- if defined? Rubinius and Rubinius::VERSION >= "2.0"
65
+ if (defined? Rubinius and Rubinius::VERSION >= "2.0") || (defined? RUBY_ENGINE and RUBY_ENGINE == "truffleruby")
66
66
  # Rubinius 2.0.0.
67
67
  # DBMS_LOCK.SLEEP blocks ruby threads which try to call C-API.
68
68
  expect[SEND_BREAK] = TIME_TO_BREAK
metadata CHANGED
@@ -1,36 +1,26 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ruby-oci8
3
- version: !ruby/object:Gem::Version
4
- hash: 23
5
- prerelease: false
6
- segments:
7
- - 2
8
- - 2
9
- - 8
10
- version: 2.2.8
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.9
11
5
  platform: x86-mingw32
12
- authors:
6
+ authors:
13
7
  - Kubo Takehiro
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2020-01-11 00:00:00 +09:00
19
- default_executable:
11
+ date: 2020-12-30 00:00:00.000000000 Z
20
12
  dependencies: []
13
+ description: 'ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available
14
+ with Oracle 10g or later including Oracle Instant Client.
21
15
 
22
- description: |
23
- ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available with Oracle 10g or later including Oracle Instant Client.
24
-
16
+ '
25
17
  email: kubo@jiubao.org
26
18
  executables: []
27
-
28
19
  extensions: []
29
-
30
- extra_rdoc_files:
20
+ extra_rdoc_files:
31
21
  - README.md
32
- files:
33
- - .yardopts
22
+ files:
23
+ - ".yardopts"
34
24
  - COPYING
35
25
  - COPYING_old
36
26
  - ChangeLog
@@ -38,10 +28,6 @@ files:
38
28
  - NEWS
39
29
  - README.md
40
30
  - dist-files
41
- - metaconfig
42
- - pre-distclean.rb
43
- - ruby-oci8.gemspec
44
- - setup.rb
45
31
  - docs/bind-array-to-in_cond.md
46
32
  - docs/conflicts-local-connections-and-processes.md
47
33
  - docs/hanging-after-inactivity.md
@@ -56,8 +42,8 @@ files:
56
42
  - docs/report-installation-issue.md
57
43
  - docs/timeout-parameters.md
58
44
  - lib/.document
59
- - lib/oci8.rb
60
45
  - lib/dbd/OCI8.rb
46
+ - lib/oci8.rb
61
47
  - lib/oci8/.document
62
48
  - lib/oci8/bindtype.rb
63
49
  - lib/oci8/check_load_error.rb
@@ -74,7 +60,15 @@ files:
74
60
  - lib/oci8/oracle_version.rb
75
61
  - lib/oci8/properties.rb
76
62
  - lib/oci8/version.rb
63
+ - lib/oci8lib_250.so
64
+ - lib/oci8lib_260.so
65
+ - lib/oci8lib_270.so
66
+ - lib/oci8lib_300.so
77
67
  - lib/ruby-oci8.rb
68
+ - metaconfig
69
+ - pre-distclean.rb
70
+ - ruby-oci8.gemspec
71
+ - setup.rb
78
72
  - test/README.md
79
73
  - test/config.rb
80
74
  - test/setup_test_object.sql
@@ -84,18 +78,18 @@ files:
84
78
  - test/test_array_dml.rb
85
79
  - test/test_bind_array.rb
86
80
  - test/test_bind_boolean.rb
81
+ - test/test_bind_integer.rb
87
82
  - test/test_bind_raw.rb
88
83
  - test/test_bind_string.rb
89
84
  - test/test_bind_time.rb
90
- - test/test_bind_integer.rb
91
85
  - test/test_break.rb
92
86
  - test/test_clob.rb
93
87
  - test/test_connection_pool.rb
94
88
  - test/test_connstr.rb
95
- - test/test_encoding.rb
96
89
  - test/test_datetime.rb
97
90
  - test/test_dbi.rb
98
91
  - test/test_dbi_clob.rb
92
+ - test/test_encoding.rb
99
93
  - test/test_error.rb
100
94
  - test/test_metadata.rb
101
95
  - test/test_object.rb
@@ -106,50 +100,29 @@ files:
106
100
  - test/test_package_type.rb
107
101
  - test/test_properties.rb
108
102
  - test/test_rowid.rb
109
- - lib/oci8lib_191.so
110
- - lib/oci8lib_200.so
111
- - lib/oci8lib_210.so
112
- - lib/oci8lib_220.so
113
- - lib/oci8lib_230.so
114
- - lib/oci8lib_240.so
115
- - lib/oci8lib_250.so
116
- - lib/oci8lib_260.so
117
- - lib/oci8lib_270.so
118
- has_rdoc: true
119
103
  homepage: http://www.rubydoc.info/github/kubo/ruby-oci8
120
- licenses:
104
+ licenses:
121
105
  - BSD-2-Clause
106
+ metadata: {}
122
107
  post_install_message:
123
108
  rdoc_options: []
124
-
125
- require_paths:
109
+ require_paths:
126
110
  - lib
127
- required_ruby_version: !ruby/object:Gem::Requirement
128
- none: false
129
- requirements:
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
130
113
  - - ">="
131
- - !ruby/object:Gem::Version
132
- hash: 49
133
- segments:
134
- - 1
135
- - 9
136
- - 1
137
- version: 1.9.1
138
- required_rubygems_version: !ruby/object:Gem::Requirement
139
- none: false
140
- requirements:
114
+ - !ruby/object:Gem::Version
115
+ version: 2.5.0
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
141
118
  - - ">="
142
- - !ruby/object:Gem::Version
143
- hash: 3
144
- segments:
145
- - 0
146
- version: "0"
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
147
121
  requirements: []
148
-
149
122
  rubyforge_project:
150
- rubygems_version: 1.3.7
123
+ rubygems_version: 2.7.3
151
124
  signing_key:
152
- specification_version: 3
125
+ specification_version: 4
153
126
  summary: Ruby interface for Oracle using OCI8 API
154
- test_files:
127
+ test_files:
155
128
  - test/test_all.rb
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file