ruby-oci8 2.1.8 → 2.2.0.1
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.
- data/.yardopts +2 -0
- data/ChangeLog +186 -0
- data/Makefile +2 -2
- data/NEWS +64 -5
- data/README.md +10 -8
- data/dist-files +7 -2
- data/docs/install-instant-client.md +7 -5
- data/docs/install-on-osx.md +132 -0
- data/docs/osx-install-dev-tools.png +0 -0
- data/docs/report-installation-issue.md +1 -4
- data/ext/oci8/apiwrap.c.tmpl +0 -4
- data/ext/oci8/apiwrap.yml +2 -62
- data/ext/oci8/bind.c +1 -3
- data/ext/oci8/encoding.c +56 -168
- data/ext/oci8/env.c +0 -46
- data/ext/oci8/error.c +6 -32
- data/ext/oci8/extconf.rb +33 -39
- data/ext/oci8/lob.c +110 -118
- data/ext/oci8/oci8.c +19 -174
- data/ext/oci8/oci8.h +10 -121
- data/ext/oci8/oci8lib.c +26 -69
- data/ext/oci8/ocidatetime.c +4 -46
- data/ext/oci8/ocinumber.c +7 -30
- data/ext/oci8/oraconf.rb +64 -4
- data/ext/oci8/stmt.c +2 -9
- data/ext/oci8/thread_util.c +0 -4
- data/ext/oci8/thread_util.h +0 -12
- data/ext/oci8/util.c +71 -0
- data/ext/oci8/win32.c +1 -25
- data/lib/{oci8.rb.in → oci8.rb} +11 -3
- data/lib/oci8/bindtype.rb +3 -13
- data/lib/oci8/check_load_error.rb +99 -0
- data/lib/oci8/encoding-init.rb +27 -61
- data/lib/oci8/metadata.rb +27 -57
- data/lib/oci8/oci8.rb +17 -18
- data/lib/oci8/properties.rb +1 -9
- data/lib/oci8/version.rb +3 -0
- data/ruby-oci8.gemspec +15 -5
- data/test/test_oci8.rb +14 -2
- data/test/test_package_type.rb +967 -0
- metadata +28 -11
- data/VERSION +0 -1
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-oci8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 2
|
7
|
+
- 2
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 2.2.0.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Kubo Takehiro
|
@@ -9,12 +15,12 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date: 2015-
|
18
|
+
date: 2015-10-11 00:00:00 +09:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
16
22
|
description: |
|
17
|
-
ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available with
|
23
|
+
ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available with Oracle 10g or later including Oracle Instant Client.
|
18
24
|
|
19
25
|
email: kubo@jiubao.org
|
20
26
|
executables: []
|
@@ -31,7 +37,6 @@ files:
|
|
31
37
|
- Makefile
|
32
38
|
- NEWS
|
33
39
|
- README.md
|
34
|
-
- VERSION
|
35
40
|
- dist-files
|
36
41
|
- metaconfig
|
37
42
|
- pre-distclean.rb
|
@@ -40,6 +45,8 @@ files:
|
|
40
45
|
- docs/install-binary-package.md
|
41
46
|
- docs/install-full-client.md
|
42
47
|
- docs/install-instant-client.md
|
48
|
+
- docs/install-on-osx.md
|
49
|
+
- docs/osx-install-dev-tools.png
|
43
50
|
- docs/platform-specific-issues.md
|
44
51
|
- docs/report-installation-issue.md
|
45
52
|
- ext/oci8/.document
|
@@ -77,12 +84,14 @@ files:
|
|
77
84
|
- ext/oci8/stmt.c
|
78
85
|
- ext/oci8/thread_util.c
|
79
86
|
- ext/oci8/thread_util.h
|
87
|
+
- ext/oci8/util.c
|
80
88
|
- ext/oci8/win32.c
|
81
89
|
- lib/.document
|
82
|
-
- lib/oci8.rb
|
90
|
+
- lib/oci8.rb
|
83
91
|
- lib/dbd/OCI8.rb
|
84
92
|
- lib/oci8/.document
|
85
93
|
- lib/oci8/bindtype.rb
|
94
|
+
- lib/oci8/check_load_error.rb
|
86
95
|
- lib/oci8/compat.rb
|
87
96
|
- lib/oci8/connection_pool.rb
|
88
97
|
- lib/oci8/cursor.rb
|
@@ -95,6 +104,7 @@ files:
|
|
95
104
|
- lib/oci8/ocihandle.rb
|
96
105
|
- lib/oci8/oracle_version.rb
|
97
106
|
- lib/oci8/properties.rb
|
107
|
+
- lib/oci8/version.rb
|
98
108
|
- test/README
|
99
109
|
- test/config.rb
|
100
110
|
- test/setup_test_object.sql
|
@@ -119,9 +129,10 @@ files:
|
|
119
129
|
- test/test_oracle_version.rb
|
120
130
|
- test/test_oradate.rb
|
121
131
|
- test/test_oranumber.rb
|
132
|
+
- test/test_package_type.rb
|
122
133
|
- test/test_rowid.rb
|
123
134
|
has_rdoc: true
|
124
|
-
homepage:
|
135
|
+
homepage: http://www.rubydoc.info/github/kubo/ruby-oci8
|
125
136
|
licenses:
|
126
137
|
- 2-clause BSD-style license
|
127
138
|
post_install_message:
|
@@ -131,21 +142,27 @@ require_paths:
|
|
131
142
|
- lib
|
132
143
|
- ext/oci8
|
133
144
|
required_ruby_version: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
134
146
|
requirements:
|
135
147
|
- - ">="
|
136
148
|
- !ruby/object:Gem::Version
|
137
|
-
|
138
|
-
|
149
|
+
segments:
|
150
|
+
- 1
|
151
|
+
- 9
|
152
|
+
- 1
|
153
|
+
version: 1.9.1
|
139
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
155
|
+
none: false
|
140
156
|
requirements:
|
141
157
|
- - ">="
|
142
158
|
- !ruby/object:Gem::Version
|
159
|
+
segments:
|
160
|
+
- 0
|
143
161
|
version: "0"
|
144
|
-
version:
|
145
162
|
requirements: []
|
146
163
|
|
147
|
-
rubyforge_project:
|
148
|
-
rubygems_version: 1.3.
|
164
|
+
rubyforge_project:
|
165
|
+
rubygems_version: 1.3.7
|
149
166
|
signing_key:
|
150
167
|
specification_version: 3
|
151
168
|
summary: Ruby interface for Oracle using OCI8 API
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2.1.8
|