ibm_db 1.1.1-mswin32 → 1.5.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +7 -0
- data/README +1 -1
- data/ext/Makefile.nt32 +2 -2
- data/ext/extconf.rb +6 -0
- data/ext/ibm_db.c +5124 -2607
- data/ext/mkmf.log +45 -0
- data/ext/ruby_ibm_db.h +17 -7
- data/ext/ruby_ibm_db_cli.c +629 -0
- data/ext/ruby_ibm_db_cli.h +389 -0
- data/lib/active_record/connection_adapters/ibm_db_adapter.rb +228 -199
- data/lib/mswin32/ibm_db.so +0 -0
- metadata +10 -22
data/lib/mswin32/ibm_db.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ibm_db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: mswin32
|
6
6
|
authors:
|
7
7
|
- IBM
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-01-05 00:00:00 +05:30
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -34,28 +34,22 @@ extra_rdoc_files:
|
|
34
34
|
- MANIFEST
|
35
35
|
files:
|
36
36
|
- CHANGES
|
37
|
-
- ext
|
38
37
|
- ext/extconf.rb
|
39
38
|
- ext/ibm_db.c
|
40
39
|
- ext/Makefile.nt32
|
40
|
+
- ext/mkmf.log
|
41
41
|
- ext/ruby_ibm_db.h
|
42
|
+
- ext/ruby_ibm_db_cli.c
|
43
|
+
- ext/ruby_ibm_db_cli.h
|
42
44
|
- init.rb
|
43
|
-
- lib
|
44
|
-
- lib/active_record
|
45
|
-
- lib/active_record/connection_adapters
|
46
45
|
- lib/active_record/connection_adapters/ibm_db_adapter.rb
|
47
|
-
- lib/active_record/vendor
|
48
46
|
- lib/active_record/vendor/db2-i5-zOS.yaml
|
49
47
|
- lib/IBM_DB.rb
|
50
|
-
- lib/mswin32
|
51
48
|
- lib/mswin32/ibm_db.so
|
52
49
|
- LICENSE
|
53
50
|
- MANIFEST
|
54
51
|
- README
|
55
|
-
- test
|
56
|
-
- test/cases
|
57
52
|
- test/cases/adapter_test.rb
|
58
|
-
- test/cases/associations
|
59
53
|
- test/cases/associations/cascaded_eager_loading_test.rb
|
60
54
|
- test/cases/associations/eager_test.rb
|
61
55
|
- test/cases/associations/has_and_belongs_to_many_associations_test.rb
|
@@ -69,24 +63,18 @@ files:
|
|
69
63
|
- test/cases/migration_test.rb
|
70
64
|
- test/cases/schema_dumper_test.rb
|
71
65
|
- test/cases/validations_test.rb
|
72
|
-
- test/connections
|
73
|
-
- test/connections/native_ibm_db
|
74
66
|
- test/connections/native_ibm_db/connection.rb
|
75
67
|
- test/ibm_db_test.rb
|
76
|
-
- test/models
|
77
68
|
- test/models/warehouse_thing.rb
|
78
|
-
- test/schema
|
79
|
-
- test/schema/i5
|
80
69
|
- test/schema/i5/ibm_db_specific_schema.rb
|
81
|
-
- test/schema/ids
|
82
70
|
- test/schema/ids/ibm_db_specific_schema.rb
|
83
|
-
- test/schema/luw
|
84
71
|
- test/schema/luw/ibm_db_specific_schema.rb
|
85
72
|
- test/schema/schema.rb
|
86
|
-
- test/schema/zOS
|
87
73
|
- test/schema/zOS/ibm_db_specific_schema.rb
|
88
74
|
has_rdoc: true
|
89
75
|
homepage: http://rubyforge.org/projects/rubyibm/
|
76
|
+
licenses: []
|
77
|
+
|
90
78
|
post_install_message:
|
91
79
|
rdoc_options: []
|
92
80
|
|
@@ -96,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
96
84
|
requirements:
|
97
85
|
- - ">="
|
98
86
|
- !ruby/object:Gem::Version
|
99
|
-
version: 1.8.
|
87
|
+
version: 1.8.6
|
100
88
|
version:
|
101
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
90
|
requirements:
|
@@ -107,9 +95,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
95
|
requirements:
|
108
96
|
- ActiveRecord, at least 1.15.1
|
109
97
|
rubyforge_project: rubyibm
|
110
|
-
rubygems_version: 1.3.
|
98
|
+
rubygems_version: 1.3.5
|
111
99
|
signing_key:
|
112
|
-
specification_version:
|
100
|
+
specification_version: 3
|
113
101
|
summary: "Rails Driver and Adapter for IBM Data Servers: {DB2 on Linux/Unix/Windows, DB2 on zOS, DB2 on i5/OS, Informix (IDS)}"
|
114
102
|
test_files:
|
115
103
|
- test/ibm_db_test.rb
|