cubrid 9.3.0 → 10.1.0
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 +7 -0
- data/README.rdoc +6 -5
- data/ext/conn.c +42 -64
- data/ext/cubrid.c +197 -194
- data/ext/cubrid.h +98 -192
- data/ext/error.c +144 -151
- data/ext/extconf.rb +19 -58
- data/ext/stmt.c +1019 -1044
- metadata +32 -30
- data/ext/build_cci.sh +0 -19
- data/ext/cci-src.tar.bz2 +0 -0
metadata
CHANGED
@@ -1,24 +1,26 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: cubrid
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 10.1.0
|
6
5
|
platform: ruby
|
7
|
-
authors:
|
6
|
+
authors:
|
8
7
|
- NHN
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
11
|
+
|
12
|
+
date: 2017-07-25 00:00:00 Z
|
13
13
|
dependencies: []
|
14
|
+
|
14
15
|
description: This extension is a Ruby connector for CUBRID Database.
|
15
16
|
email: cubrid_ruby@nhncorp.com
|
16
17
|
executables: []
|
17
|
-
|
18
|
+
|
19
|
+
extensions:
|
18
20
|
- ext/extconf.rb
|
19
|
-
extra_rdoc_files:
|
21
|
+
extra_rdoc_files:
|
20
22
|
- README.rdoc
|
21
|
-
files:
|
23
|
+
files:
|
22
24
|
- README.rdoc
|
23
25
|
- ext/extconf.rb
|
24
26
|
- ext/cubrid.c
|
@@ -26,36 +28,36 @@ files:
|
|
26
28
|
- ext/conn.c
|
27
29
|
- ext/stmt.c
|
28
30
|
- ext/error.c
|
29
|
-
- ext/cci-src.tar.bz2
|
30
|
-
- ext/build_cci.sh
|
31
31
|
homepage: http://www.cubrid.org/cubrid_ruby_programming
|
32
|
-
licenses:
|
33
|
-
|
32
|
+
licenses: []
|
33
|
+
|
34
|
+
metadata: {}
|
35
|
+
|
34
36
|
post_install_message:
|
35
|
-
rdoc_options:
|
37
|
+
rdoc_options:
|
36
38
|
- --title
|
37
39
|
- cubrid-ruby documentation
|
38
40
|
- --line-numbers
|
39
41
|
- --main
|
40
|
-
- README
|
41
|
-
require_paths:
|
42
|
+
- README
|
43
|
+
require_paths:
|
42
44
|
- .
|
43
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ~>
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 1.8.0
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
55
|
requirements: []
|
56
|
+
|
56
57
|
rubyforge_project: cubrid
|
57
|
-
rubygems_version:
|
58
|
+
rubygems_version: 2.0.17
|
58
59
|
signing_key:
|
59
|
-
specification_version:
|
60
|
+
specification_version: 4
|
60
61
|
summary: CUBRID Database API Module for Ruby
|
61
62
|
test_files: []
|
63
|
+
|
data/ext/build_cci.sh
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
|
3
|
-
#echo "build_cci sh."
|
4
|
-
if [ -f cci-src/cci/.libs/libcascci.a ];then
|
5
|
-
# echo "libcascci.a exist."
|
6
|
-
exit 0
|
7
|
-
fi
|
8
|
-
|
9
|
-
tar xvjf cci-src.tar.bz2
|
10
|
-
cd cci-src
|
11
|
-
chmod +x configure
|
12
|
-
chmod +x external/libregex38a/configure
|
13
|
-
if [ "$1" = 'x86' ];then
|
14
|
-
./configure
|
15
|
-
else
|
16
|
-
./configure --enable-64bit
|
17
|
-
fi
|
18
|
-
|
19
|
-
make
|
data/ext/cci-src.tar.bz2
DELETED
Binary file
|