ibm_db 5.1.0 → 5.6.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.
Files changed (626) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +29 -0
  3. data/LICENSE +55 -18
  4. data/README +4 -2
  5. data/ext/Makefile +26 -23
  6. data/ext/extconf.rb +32 -34
  7. data/ext/ibm_db.c +40 -54
  8. data/ext/ibm_db.o +0 -0
  9. data/ext/ibm_db.so +0 -0
  10. data/ext/mkmf.log +16 -17
  11. data/ext/ruby_ibm_db_cli.c +2 -1
  12. data/ext/ruby_ibm_db_cli.h +8 -0
  13. data/ext/ruby_ibm_db_cli.o +0 -0
  14. data/lib/IBM_DB.rb +1 -1
  15. data/lib/active_record/connection_adapters/ibm_db_adapter.rb +3168 -2354
  16. data/test/active_record/connection_adapters/fake_adapter.rb +5 -2
  17. data/test/activejob/destroy_association_async_test.rb +305 -0
  18. data/test/activejob/destroy_async_job_not_present_test.rb +31 -0
  19. data/test/activejob/helper.rb +15 -0
  20. data/test/assets/schema_dump_5_1.yml +345 -0
  21. data/test/cases/adapter_prevent_writes_test.rb +334 -0
  22. data/test/cases/adapter_test.rb +432 -218
  23. data/test/cases/adapters/mysql2/active_schema_test.rb +85 -75
  24. data/test/cases/adapters/mysql2/auto_increment_test.rb +34 -0
  25. data/test/cases/adapters/mysql2/bind_parameter_test.rb +5 -3
  26. data/test/cases/adapters/mysql2/boolean_test.rb +6 -4
  27. data/test/cases/adapters/mysql2/case_sensitivity_test.rb +26 -24
  28. data/test/cases/adapters/mysql2/charset_collation_test.rb +20 -17
  29. data/test/cases/adapters/mysql2/connection_test.rb +48 -50
  30. data/test/cases/adapters/mysql2/count_deleted_rows_with_lock_test.rb +28 -0
  31. data/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +23 -19
  32. data/test/cases/adapters/mysql2/enum_test.rb +32 -11
  33. data/test/cases/adapters/mysql2/explain_test.rb +13 -11
  34. data/test/cases/adapters/mysql2/json_test.rb +17 -188
  35. data/test/cases/adapters/mysql2/mysql2_adapter_prevent_writes_test.rb +208 -0
  36. data/test/cases/adapters/mysql2/mysql2_adapter_test.rb +183 -28
  37. data/test/cases/adapters/mysql2/nested_deadlock_test.rb +75 -0
  38. data/test/cases/adapters/mysql2/optimizer_hints_test.rb +69 -0
  39. data/test/cases/adapters/mysql2/schema_migrations_test.rb +26 -21
  40. data/test/cases/adapters/mysql2/schema_test.rb +24 -22
  41. data/test/cases/adapters/mysql2/set_test.rb +32 -0
  42. data/test/cases/adapters/mysql2/sp_test.rb +10 -8
  43. data/test/cases/adapters/mysql2/sql_types_test.rb +8 -6
  44. data/test/cases/adapters/mysql2/table_options_test.rb +93 -10
  45. data/test/cases/adapters/mysql2/transaction_test.rb +151 -0
  46. data/test/cases/adapters/mysql2/unsigned_type_test.rb +11 -9
  47. data/test/cases/adapters/mysql2/virtual_column_test.rb +66 -0
  48. data/test/cases/adapters/postgresql/active_schema_test.rb +40 -25
  49. data/test/cases/adapters/postgresql/array_test.rb +118 -63
  50. data/test/cases/adapters/postgresql/bit_string_test.rb +12 -10
  51. data/test/cases/adapters/postgresql/bytea_test.rb +26 -25
  52. data/test/cases/adapters/postgresql/case_insensitive_test.rb +10 -9
  53. data/test/cases/adapters/postgresql/change_schema_test.rb +7 -5
  54. data/test/cases/adapters/postgresql/cidr_test.rb +2 -0
  55. data/test/cases/adapters/postgresql/citext_test.rb +58 -58
  56. data/test/cases/adapters/postgresql/collation_test.rb +17 -15
  57. data/test/cases/adapters/postgresql/composite_test.rb +25 -23
  58. data/test/cases/adapters/postgresql/connection_test.rb +73 -85
  59. data/test/cases/adapters/postgresql/create_unlogged_tables_test.rb +74 -0
  60. data/test/cases/adapters/postgresql/datatype_test.rb +19 -22
  61. data/test/cases/adapters/postgresql/date_test.rb +42 -0
  62. data/test/cases/adapters/postgresql/domain_test.rb +9 -7
  63. data/test/cases/adapters/postgresql/enum_test.rb +12 -10
  64. data/test/cases/adapters/postgresql/explain_test.rb +10 -8
  65. data/test/cases/adapters/postgresql/extension_migration_test.rb +13 -12
  66. data/test/cases/adapters/postgresql/foreign_table_test.rb +109 -0
  67. data/test/cases/adapters/postgresql/full_text_test.rb +8 -6
  68. data/test/cases/adapters/postgresql/geometric_test.rb +57 -63
  69. data/test/cases/adapters/postgresql/hstore_test.rb +288 -280
  70. data/test/cases/adapters/postgresql/infinity_test.rb +54 -15
  71. data/test/cases/adapters/postgresql/integer_test.rb +2 -0
  72. data/test/cases/adapters/postgresql/interval_test.rb +99 -0
  73. data/test/cases/adapters/postgresql/json_test.rb +16 -201
  74. data/test/cases/adapters/postgresql/ltree_test.rb +14 -16
  75. data/test/cases/adapters/postgresql/money_test.rb +47 -16
  76. data/test/cases/adapters/postgresql/network_test.rb +36 -28
  77. data/test/cases/adapters/postgresql/numbers_test.rb +7 -5
  78. data/test/cases/adapters/postgresql/optimizer_hints_test.rb +71 -0
  79. data/test/cases/adapters/postgresql/partitions_test.rb +22 -0
  80. data/test/cases/adapters/postgresql/postgresql_adapter_prevent_writes_test.rb +205 -0
  81. data/test/cases/adapters/postgresql/postgresql_adapter_test.rb +178 -136
  82. data/test/cases/adapters/postgresql/prepared_statements_disabled_test.rb +27 -0
  83. data/test/cases/adapters/postgresql/quoting_test.rb +12 -6
  84. data/test/cases/adapters/postgresql/range_test.rb +406 -292
  85. data/test/cases/adapters/postgresql/referential_integrity_test.rb +16 -15
  86. data/test/cases/adapters/postgresql/rename_table_test.rb +9 -8
  87. data/test/cases/adapters/postgresql/schema_authorization_test.rb +14 -23
  88. data/test/cases/adapters/postgresql/schema_test.rb +207 -91
  89. data/test/cases/adapters/postgresql/serial_test.rb +9 -7
  90. data/test/cases/adapters/postgresql/statement_pool_test.rb +26 -6
  91. data/test/cases/adapters/postgresql/timestamp_test.rb +17 -15
  92. data/test/cases/adapters/postgresql/transaction_nested_test.rb +114 -0
  93. data/test/cases/adapters/postgresql/transaction_test.rb +189 -0
  94. data/test/cases/adapters/postgresql/type_lookup_test.rb +12 -10
  95. data/test/cases/adapters/postgresql/utils_test.rb +11 -9
  96. data/test/cases/adapters/postgresql/uuid_test.rb +226 -109
  97. data/test/cases/adapters/postgresql/xml_test.rb +10 -14
  98. data/test/cases/adapters/sqlite3/collation_test.rb +26 -15
  99. data/test/cases/adapters/sqlite3/copy_table_test.rb +31 -28
  100. data/test/cases/adapters/sqlite3/explain_test.rb +13 -11
  101. data/test/cases/adapters/sqlite3/json_test.rb +29 -0
  102. data/test/cases/adapters/sqlite3/quoting_test.rb +35 -57
  103. data/test/cases/adapters/sqlite3/sqlite3_adapter_prevent_writes_test.rb +186 -0
  104. data/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +318 -131
  105. data/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +11 -11
  106. data/test/cases/adapters/sqlite3/statement_pool_test.rb +7 -6
  107. data/test/cases/adapters/sqlite3/transaction_test.rb +123 -0
  108. data/test/cases/aggregations_test.rb +14 -12
  109. data/test/cases/annotate_test.rb +46 -0
  110. data/test/cases/ar_schema_test.rb +153 -86
  111. data/test/cases/arel/attributes/attribute_test.rb +1145 -0
  112. data/test/cases/arel/attributes/math_test.rb +83 -0
  113. data/test/cases/arel/attributes_test.rb +27 -0
  114. data/test/cases/arel/collectors/bind_test.rb +40 -0
  115. data/test/cases/arel/collectors/composite_test.rb +47 -0
  116. data/test/cases/arel/collectors/sql_string_test.rb +41 -0
  117. data/test/cases/arel/collectors/substitute_bind_collector_test.rb +48 -0
  118. data/test/cases/arel/crud_test.rb +65 -0
  119. data/test/cases/arel/delete_manager_test.rb +53 -0
  120. data/test/cases/arel/factory_methods_test.rb +46 -0
  121. data/test/cases/arel/helper.rb +45 -0
  122. data/test/cases/arel/insert_manager_test.rb +241 -0
  123. data/test/cases/arel/nodes/and_test.rb +30 -0
  124. data/test/cases/arel/nodes/as_test.rb +36 -0
  125. data/test/cases/arel/nodes/ascending_test.rb +46 -0
  126. data/test/cases/arel/nodes/bin_test.rb +35 -0
  127. data/test/cases/arel/nodes/binary_test.rb +29 -0
  128. data/test/cases/arel/nodes/bind_param_test.rb +22 -0
  129. data/test/cases/arel/nodes/case_test.rb +96 -0
  130. data/test/cases/arel/nodes/casted_test.rb +18 -0
  131. data/test/cases/arel/nodes/comment_test.rb +22 -0
  132. data/test/cases/arel/nodes/count_test.rb +35 -0
  133. data/test/cases/arel/nodes/delete_statement_test.rb +36 -0
  134. data/test/cases/arel/nodes/descending_test.rb +46 -0
  135. data/test/cases/arel/nodes/distinct_test.rb +21 -0
  136. data/test/cases/arel/nodes/equality_test.rb +62 -0
  137. data/test/cases/arel/nodes/extract_test.rb +43 -0
  138. data/test/cases/arel/nodes/false_test.rb +21 -0
  139. data/test/cases/arel/nodes/grouping_test.rb +26 -0
  140. data/test/cases/arel/nodes/infix_operation_test.rb +42 -0
  141. data/test/cases/arel/nodes/insert_statement_test.rb +44 -0
  142. data/test/cases/arel/nodes/named_function_test.rb +48 -0
  143. data/test/cases/arel/nodes/node_test.rb +22 -0
  144. data/test/cases/arel/nodes/not_test.rb +31 -0
  145. data/test/cases/arel/nodes/or_test.rb +36 -0
  146. data/test/cases/arel/nodes/over_test.rb +69 -0
  147. data/test/cases/arel/nodes/select_core_test.rb +79 -0
  148. data/test/cases/arel/nodes/select_statement_test.rb +51 -0
  149. data/test/cases/arel/nodes/sql_literal_test.rb +75 -0
  150. data/test/cases/arel/nodes/sum_test.rb +35 -0
  151. data/test/cases/arel/nodes/table_alias_test.rb +29 -0
  152. data/test/cases/arel/nodes/true_test.rb +21 -0
  153. data/test/cases/arel/nodes/unary_operation_test.rb +41 -0
  154. data/test/cases/arel/nodes/update_statement_test.rb +60 -0
  155. data/test/cases/arel/nodes/window_test.rb +81 -0
  156. data/test/cases/arel/nodes_test.rb +34 -0
  157. data/test/cases/arel/select_manager_test.rb +1238 -0
  158. data/test/cases/arel/support/fake_record.rb +135 -0
  159. data/test/cases/arel/table_test.rb +216 -0
  160. data/test/cases/arel/update_manager_test.rb +126 -0
  161. data/test/cases/arel/visitors/dispatch_contamination_test.rb +78 -0
  162. data/test/cases/arel/visitors/dot_test.rb +90 -0
  163. data/test/cases/arel/visitors/mysql_test.rb +157 -0
  164. data/test/cases/arel/visitors/postgres_test.rb +366 -0
  165. data/test/cases/arel/visitors/sqlite_test.rb +75 -0
  166. data/test/cases/arel/visitors/to_sql_test.rb +750 -0
  167. data/test/cases/associations/belongs_to_associations_test.rb +510 -158
  168. data/test/cases/associations/bidirectional_destroy_dependencies_test.rb +4 -2
  169. data/test/cases/associations/callbacks_test.rb +56 -38
  170. data/test/cases/associations/cascaded_eager_loading_test.rb +118 -61
  171. data/test/cases/associations/eager_load_includes_full_sti_class_test.rb +138 -18
  172. data/test/cases/associations/eager_load_nested_include_test.rb +38 -37
  173. data/test/cases/associations/eager_singularization_test.rb +21 -21
  174. data/test/cases/associations/eager_test.rb +559 -415
  175. data/test/cases/associations/extension_test.rb +18 -12
  176. data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +234 -213
  177. data/test/cases/associations/has_many_associations_test.rb +1038 -465
  178. data/test/cases/associations/has_many_through_associations_test.rb +558 -249
  179. data/test/cases/associations/has_one_associations_test.rb +294 -129
  180. data/test/cases/associations/has_one_through_associations_test.rb +121 -75
  181. data/test/cases/associations/inner_join_association_test.rb +114 -38
  182. data/test/cases/associations/inverse_associations_test.rb +606 -398
  183. data/test/cases/associations/join_model_test.rb +158 -148
  184. data/test/cases/associations/left_outer_join_association_test.rb +59 -24
  185. data/test/cases/associations/nested_through_associations_test.rb +166 -109
  186. data/test/cases/associations/required_test.rb +35 -10
  187. data/test/cases/associations_test.rb +241 -110
  188. data/test/cases/attribute_methods/read_test.rb +11 -11
  189. data/test/cases/attribute_methods_test.rb +413 -298
  190. data/test/cases/attributes_test.rb +145 -27
  191. data/test/cases/autosave_association_test.rb +681 -436
  192. data/test/cases/base_prevent_writes_test.rb +229 -0
  193. data/test/cases/base_test.rb +599 -542
  194. data/test/cases/batches_test.rb +288 -82
  195. data/test/cases/binary_test.rb +26 -31
  196. data/test/cases/bind_parameter_test.rb +194 -21
  197. data/test/cases/boolean_test.rb +52 -0
  198. data/test/cases/cache_key_test.rb +110 -5
  199. data/test/cases/calculations_test.rb +740 -177
  200. data/test/cases/callbacks_test.rb +74 -207
  201. data/test/cases/clone_test.rb +15 -10
  202. data/test/cases/coders/json_test.rb +2 -0
  203. data/test/cases/coders/yaml_column_test.rb +16 -13
  204. data/test/cases/collection_cache_key_test.rb +177 -20
  205. data/test/cases/column_alias_test.rb +9 -7
  206. data/test/cases/column_definition_test.rb +10 -68
  207. data/test/cases/comment_test.rb +166 -107
  208. data/test/cases/connection_adapters/adapter_leasing_test.rb +14 -10
  209. data/test/cases/connection_adapters/connection_handler_test.rb +358 -51
  210. data/test/cases/connection_adapters/connection_handlers_multi_db_test.rb +400 -0
  211. data/test/cases/connection_adapters/connection_handlers_multi_pool_config_test.rb +103 -0
  212. data/test/cases/connection_adapters/connection_handlers_sharding_db_test.rb +499 -0
  213. data/test/cases/connection_adapters/connection_swapping_nested_test.rb +457 -0
  214. data/test/cases/connection_adapters/legacy_connection_handlers_multi_db_test.rb +486 -0
  215. data/test/cases/connection_adapters/legacy_connection_handlers_sharding_db_test.rb +586 -0
  216. data/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +319 -138
  217. data/test/cases/connection_adapters/mysql_type_lookup_test.rb +62 -50
  218. data/test/cases/connection_adapters/schema_cache_test.rb +259 -26
  219. data/test/cases/connection_adapters/type_lookup_test.rb +96 -95
  220. data/test/cases/connection_management_test.rb +13 -11
  221. data/test/cases/connection_pool_test.rb +316 -83
  222. data/test/cases/core_test.rb +82 -58
  223. data/test/cases/counter_cache_test.rb +204 -50
  224. data/test/cases/custom_locking_test.rb +5 -3
  225. data/test/cases/database_configurations/hash_config_test.rb +74 -0
  226. data/test/cases/database_configurations/resolver_test.rb +150 -0
  227. data/test/cases/database_configurations_test.rb +145 -0
  228. data/test/cases/database_selector_test.rb +296 -0
  229. data/test/cases/database_statements_test.rb +18 -16
  230. data/test/cases/date_test.rb +8 -16
  231. data/test/cases/date_time_precision_test.rb +100 -78
  232. data/test/cases/date_time_test.rb +23 -8
  233. data/test/cases/defaults_test.rb +106 -71
  234. data/test/cases/delegated_type_test.rb +57 -0
  235. data/test/cases/dirty_test.rb +419 -223
  236. data/test/cases/disconnected_test.rb +6 -6
  237. data/test/cases/dup_test.rb +54 -27
  238. data/test/cases/enum_test.rb +461 -82
  239. data/test/cases/errors_test.rb +7 -7
  240. data/test/cases/explain_subscriber_test.rb +17 -15
  241. data/test/cases/explain_test.rb +11 -19
  242. data/test/cases/filter_attributes_test.rb +153 -0
  243. data/test/cases/finder_respond_to_test.rb +14 -14
  244. data/test/cases/finder_test.rb +669 -287
  245. data/test/cases/fixture_set/file_test.rb +34 -38
  246. data/test/cases/fixtures_test.rb +833 -176
  247. data/test/cases/forbidden_attributes_protection_test.rb +32 -67
  248. data/test/cases/habtm_destroy_order_test.rb +25 -25
  249. data/test/cases/helper.rb +78 -49
  250. data/test/cases/hot_compatibility_test.rb +33 -32
  251. data/test/cases/i18n_test.rb +18 -17
  252. data/test/cases/inheritance_test.rb +180 -115
  253. data/test/cases/insert_all_test.rb +489 -0
  254. data/test/cases/instrumentation_test.rb +101 -0
  255. data/test/cases/integration_test.rb +119 -31
  256. data/test/cases/invalid_connection_test.rb +18 -16
  257. data/test/cases/invertible_migration_test.rb +183 -43
  258. data/test/cases/json_attribute_test.rb +35 -0
  259. data/test/cases/json_serialization_test.rb +57 -58
  260. data/test/cases/json_shared_test_cases.rb +290 -0
  261. data/test/cases/locking_test.rb +413 -119
  262. data/test/cases/log_subscriber_test.rb +68 -26
  263. data/test/cases/marshal_serialization_test.rb +39 -0
  264. data/test/cases/migration/change_schema_test.rb +118 -72
  265. data/test/cases/migration/change_table_test.rb +138 -30
  266. data/test/cases/migration/check_constraint_test.rb +162 -0
  267. data/test/cases/migration/column_attributes_test.rb +45 -35
  268. data/test/cases/migration/column_positioning_test.rb +18 -6
  269. data/test/cases/migration/columns_test.rb +93 -77
  270. data/test/cases/migration/command_recorder_test.rb +121 -34
  271. data/test/cases/migration/compatibility_test.rb +578 -23
  272. data/test/cases/migration/create_join_table_test.rb +35 -25
  273. data/test/cases/migration/foreign_key_test.rb +503 -284
  274. data/test/cases/migration/helper.rb +4 -3
  275. data/test/cases/migration/index_test.rb +119 -70
  276. data/test/cases/migration/logger_test.rb +9 -6
  277. data/test/cases/migration/pending_migrations_test.rb +88 -34
  278. data/test/cases/migration/references_foreign_key_test.rb +164 -150
  279. data/test/cases/migration/references_index_test.rb +38 -19
  280. data/test/cases/migration/references_statements_test.rb +15 -14
  281. data/test/cases/migration/rename_table_test.rb +53 -30
  282. data/test/cases/migration_test.rb +637 -269
  283. data/test/cases/migrator_test.rb +191 -135
  284. data/test/cases/mixin_test.rb +7 -11
  285. data/test/cases/modules_test.rb +36 -34
  286. data/test/cases/multi_db_migrator_test.rb +223 -0
  287. data/test/cases/multiparameter_attributes_test.rb +60 -33
  288. data/test/cases/multiple_db_test.rb +16 -22
  289. data/test/cases/nested_attributes_test.rb +341 -320
  290. data/test/cases/nested_attributes_with_callbacks_test.rb +26 -24
  291. data/test/cases/null_relation_test.rb +84 -0
  292. data/test/cases/numeric_data_test.rb +93 -0
  293. data/test/cases/persistence_test.rb +361 -269
  294. data/test/cases/pooled_connections_test.rb +18 -26
  295. data/test/cases/prepared_statement_status_test.rb +48 -0
  296. data/test/cases/primary_keys_test.rb +210 -104
  297. data/test/cases/query_cache_test.rb +610 -141
  298. data/test/cases/quoting_test.rb +132 -31
  299. data/test/cases/readonly_test.rb +49 -48
  300. data/test/cases/reaper_test.rb +146 -32
  301. data/test/cases/reflection_test.rb +167 -156
  302. data/test/cases/relation/delegation_test.rb +49 -36
  303. data/test/cases/relation/delete_all_test.rb +117 -0
  304. data/test/cases/relation/merging_test.rb +319 -42
  305. data/test/cases/relation/mutation_test.rb +55 -93
  306. data/test/cases/relation/or_test.rb +129 -29
  307. data/test/cases/relation/predicate_builder_test.rb +21 -6
  308. data/test/cases/relation/record_fetch_warning_test.rb +5 -3
  309. data/test/cases/relation/select_test.rb +67 -0
  310. data/test/cases/relation/update_all_test.rb +317 -0
  311. data/test/cases/relation/where_chain_test.rb +68 -32
  312. data/test/cases/relation/where_clause_test.rb +136 -61
  313. data/test/cases/relation/where_test.rb +155 -48
  314. data/test/cases/relation_test.rb +266 -112
  315. data/test/cases/relations_test.rb +969 -744
  316. data/test/cases/reload_models_test.rb +13 -9
  317. data/test/cases/reserved_word_test.rb +141 -0
  318. data/test/cases/result_test.rb +68 -17
  319. data/test/cases/sanitize_test.rb +87 -71
  320. data/test/cases/schema_dumper_test.rb +221 -128
  321. data/test/cases/schema_loading_test.rb +3 -2
  322. data/test/cases/scoping/default_scoping_test.rb +185 -144
  323. data/test/cases/scoping/named_scoping_test.rb +177 -89
  324. data/test/cases/scoping/relation_scoping_test.rb +197 -75
  325. data/test/cases/secure_token_test.rb +18 -3
  326. data/test/cases/serialization_test.rb +30 -28
  327. data/test/cases/serialized_attribute_test.rb +133 -42
  328. data/test/cases/signed_id_test.rb +168 -0
  329. data/test/cases/statement_cache_test.rb +41 -24
  330. data/test/cases/statement_invalid_test.rb +42 -0
  331. data/test/cases/store_test.rb +180 -55
  332. data/test/cases/strict_loading_test.rb +473 -0
  333. data/test/cases/suppressor_test.rb +26 -12
  334. data/test/cases/tasks/database_tasks_test.rb +1258 -194
  335. data/test/cases/tasks/mysql_rake_test.rb +370 -298
  336. data/test/cases/tasks/postgresql_rake_test.rb +481 -251
  337. data/test/cases/tasks/sqlite_rake_test.rb +225 -178
  338. data/test/cases/test_case.rb +51 -40
  339. data/test/cases/test_databases_test.rb +79 -0
  340. data/test/cases/test_fixtures_test.rb +79 -19
  341. data/test/cases/time_precision_test.rb +98 -76
  342. data/test/cases/timestamp_test.rb +102 -99
  343. data/test/cases/touch_later_test.rb +12 -10
  344. data/test/cases/transaction_callbacks_test.rb +344 -90
  345. data/test/cases/transaction_isolation_test.rb +12 -12
  346. data/test/cases/transactions_test.rb +612 -162
  347. data/test/cases/type/adapter_specific_registry_test.rb +14 -2
  348. data/test/cases/type/date_time_test.rb +4 -2
  349. data/test/cases/type/integer_test.rb +4 -2
  350. data/test/cases/type/string_test.rb +10 -8
  351. data/test/cases/type/time_test.rb +28 -0
  352. data/test/cases/type/type_map_test.rb +29 -28
  353. data/test/cases/type/unsigned_integer_test.rb +19 -0
  354. data/test/cases/type_test.rb +2 -0
  355. data/test/cases/types_test.rb +3 -1
  356. data/test/cases/unconnected_test.rb +14 -1
  357. data/test/cases/unsafe_raw_sql_test.rb +274 -0
  358. data/test/cases/validations/absence_validation_test.rb +19 -17
  359. data/test/cases/validations/association_validation_test.rb +30 -28
  360. data/test/cases/validations/i18n_generate_message_validation_test.rb +34 -16
  361. data/test/cases/validations/i18n_validation_test.rb +22 -21
  362. data/test/cases/validations/length_validation_test.rb +34 -33
  363. data/test/cases/validations/numericality_validation_test.rb +181 -0
  364. data/test/cases/validations/presence_validation_test.rb +21 -19
  365. data/test/cases/validations/uniqueness_validation_test.rb +156 -86
  366. data/test/cases/validations_repair_helper.rb +2 -0
  367. data/test/cases/validations_test.rb +61 -26
  368. data/test/cases/view_test.rb +122 -116
  369. data/test/cases/yaml_serialization_test.rb +79 -34
  370. data/test/config.example.yml +19 -19
  371. data/test/config.rb +3 -1
  372. data/test/config.yml +74 -8
  373. data/test/fixtures/admin/randomly_named_a9.yml +7 -7
  374. data/test/fixtures/admin/randomly_named_b0.yml +7 -7
  375. data/test/fixtures/all/namespaced/accounts.yml +2 -0
  376. data/test/fixtures/author_addresses.yml +1 -8
  377. data/test/fixtures/authors.yml +1 -7
  378. data/test/fixtures/binaries.yml +4 -0
  379. data/test/fixtures/books.yml +9 -2
  380. data/test/fixtures/categories_posts.yml +3 -0
  381. data/test/fixtures/citations.yml +5 -0
  382. data/test/fixtures/comments.yml +7 -0
  383. data/test/fixtures/companies.yml +5 -0
  384. data/test/fixtures/computers.yml +2 -0
  385. data/test/fixtures/customers.yml +10 -1
  386. data/test/fixtures/developers.yml +1 -1
  387. data/test/fixtures/essays.yml +10 -0
  388. data/test/fixtures/faces.yml +3 -3
  389. data/test/fixtures/humans.yml +5 -0
  390. data/test/fixtures/interests.yml +7 -7
  391. data/test/fixtures/memberships.yml +7 -0
  392. data/test/fixtures/minimalistics.yml +3 -0
  393. data/test/fixtures/mixed_case_monkeys.yml +2 -2
  394. data/test/fixtures/naked/yml/courses_with_invalid_key.yml +3 -0
  395. data/test/fixtures/naked/yml/parrots.yml +1 -0
  396. data/test/fixtures/other_books.yml +26 -0
  397. data/test/fixtures/other_posts.yml +1 -0
  398. data/test/fixtures/parrots.yml +7 -1
  399. data/test/fixtures/pirates.yml +3 -0
  400. data/test/fixtures/posts.yml +11 -3
  401. data/test/fixtures/randomly_named_a9.yml +7 -7
  402. data/test/fixtures/readers.yml +6 -0
  403. data/test/fixtures/reserved_words/values.yml +2 -2
  404. data/test/fixtures/sponsors.yml +3 -0
  405. data/test/fixtures/strict_zines.yml +2 -0
  406. data/test/fixtures/subscribers.yml +1 -1
  407. data/test/fixtures/tasks.yml +1 -1
  408. data/test/fixtures/warehouse-things.yml +3 -0
  409. data/test/migrations/10_urban/9_add_expressions.rb +2 -0
  410. data/test/migrations/decimal/1_give_me_big_numbers.rb +6 -4
  411. data/test/migrations/magic/1_currencies_have_symbols.rb +3 -2
  412. data/test/migrations/missing/1000_people_have_middle_names.rb +2 -0
  413. data/test/migrations/missing/1_people_have_last_names.rb +2 -0
  414. data/test/migrations/missing/3_we_need_reminders.rb +2 -0
  415. data/test/migrations/missing/4_innocent_jointable.rb +3 -1
  416. data/test/migrations/rename/1_we_need_things.rb +2 -0
  417. data/test/migrations/rename/2_rename_things.rb +2 -0
  418. data/test/migrations/to_copy/1_people_have_hobbies.rb +3 -1
  419. data/test/migrations/to_copy/2_people_have_descriptions.rb +3 -1
  420. data/test/migrations/to_copy2/1_create_articles.rb +2 -0
  421. data/test/migrations/to_copy2/2_create_comments.rb +3 -1
  422. data/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +3 -1
  423. data/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +3 -1
  424. data/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +3 -1
  425. data/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +2 -0
  426. data/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +2 -0
  427. data/test/migrations/valid/1_valid_people_have_last_names.rb +2 -0
  428. data/test/migrations/valid/2_we_need_reminders.rb +2 -0
  429. data/test/migrations/valid/3_innocent_jointable.rb +3 -1
  430. data/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +2 -0
  431. data/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +2 -0
  432. data/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +3 -1
  433. data/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +2 -0
  434. data/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +2 -0
  435. data/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +3 -1
  436. data/test/migrations/version_check/20131219224947_migration_version_check.rb +2 -0
  437. data/test/models/account.rb +46 -0
  438. data/test/models/admin/account.rb +3 -1
  439. data/test/models/admin/randomly_named_c1.rb +2 -0
  440. data/test/models/admin/user.rb +16 -8
  441. data/test/models/admin.rb +4 -2
  442. data/test/models/aircraft.rb +3 -1
  443. data/test/models/arunit2_model.rb +2 -0
  444. data/test/models/author.rb +153 -102
  445. data/test/models/auto_id.rb +2 -0
  446. data/test/models/autoloadable/extra_firm.rb +2 -0
  447. data/test/models/binary.rb +3 -1
  448. data/test/models/binary_field.rb +6 -0
  449. data/test/models/bird.rb +13 -1
  450. data/test/models/book.rb +14 -4
  451. data/test/models/book_destroy_async.rb +24 -0
  452. data/test/models/boolean.rb +5 -0
  453. data/test/models/bulb.rb +13 -4
  454. data/test/models/cake_designer.rb +2 -0
  455. data/test/models/car.rb +17 -10
  456. data/test/models/carrier.rb +2 -0
  457. data/test/models/cart.rb +5 -0
  458. data/test/models/cat.rb +2 -0
  459. data/test/models/categorization.rb +8 -6
  460. data/test/models/category.rb +28 -16
  461. data/test/models/chef.rb +2 -0
  462. data/test/models/citation.rb +5 -1
  463. data/test/models/club.rb +13 -10
  464. data/test/models/college.rb +4 -2
  465. data/test/models/column.rb +2 -0
  466. data/test/models/column_name.rb +2 -0
  467. data/test/models/comment.rb +32 -10
  468. data/test/models/company.rb +102 -106
  469. data/test/models/company_in_module.rb +27 -26
  470. data/test/models/computer.rb +3 -1
  471. data/test/models/contact.rb +15 -13
  472. data/test/models/content.rb +5 -3
  473. data/test/models/contract.rb +21 -3
  474. data/test/models/country.rb +2 -4
  475. data/test/models/course.rb +3 -1
  476. data/test/models/customer.rb +10 -8
  477. data/test/models/customer_carrier.rb +2 -0
  478. data/test/models/dashboard.rb +2 -0
  479. data/test/models/default.rb +2 -0
  480. data/test/models/department.rb +2 -0
  481. data/test/models/destroy_async_parent.rb +15 -0
  482. data/test/models/destroy_async_parent_soft_delete.rb +20 -0
  483. data/test/models/developer.rb +152 -85
  484. data/test/models/dl_keyed_belongs_to.rb +13 -0
  485. data/test/models/dl_keyed_belongs_to_soft_delete.rb +19 -0
  486. data/test/models/dl_keyed_has_many.rb +5 -0
  487. data/test/models/dl_keyed_has_many_through.rb +5 -0
  488. data/test/models/dl_keyed_has_one.rb +5 -0
  489. data/test/models/dl_keyed_join.rb +10 -0
  490. data/test/models/dog.rb +2 -0
  491. data/test/models/dog_lover.rb +2 -0
  492. data/test/models/doubloon.rb +3 -1
  493. data/test/models/drink_designer.rb +17 -0
  494. data/test/models/edge.rb +4 -2
  495. data/test/models/electron.rb +2 -0
  496. data/test/models/engine.rb +3 -2
  497. data/test/models/entrant.rb +2 -0
  498. data/test/models/entry.rb +5 -0
  499. data/test/models/essay.rb +6 -3
  500. data/test/models/essay_destroy_async.rb +12 -0
  501. data/test/models/event.rb +3 -1
  502. data/test/models/eye.rb +5 -3
  503. data/test/models/face.rb +14 -6
  504. data/test/models/family.rb +6 -0
  505. data/test/models/family_tree.rb +6 -0
  506. data/test/models/friendship.rb +5 -3
  507. data/test/models/frog.rb +8 -0
  508. data/test/models/guid.rb +3 -1
  509. data/test/models/guitar.rb +2 -0
  510. data/test/models/hotel.rb +5 -3
  511. data/test/models/human.rb +39 -0
  512. data/test/models/image.rb +3 -1
  513. data/test/models/interest.rb +14 -3
  514. data/test/models/invoice.rb +4 -2
  515. data/test/models/item.rb +3 -1
  516. data/test/models/job.rb +5 -3
  517. data/test/models/joke.rb +4 -2
  518. data/test/models/keyboard.rb +3 -1
  519. data/test/models/legacy_thing.rb +2 -0
  520. data/test/models/lesson.rb +2 -0
  521. data/test/models/line_item.rb +3 -1
  522. data/test/models/liquid.rb +2 -0
  523. data/test/models/matey.rb +3 -1
  524. data/test/models/measurement.rb +4 -0
  525. data/test/models/member.rb +23 -20
  526. data/test/models/member_detail.rb +3 -0
  527. data/test/models/member_type.rb +2 -0
  528. data/test/models/membership.rb +4 -1
  529. data/test/models/mentor.rb +3 -1
  530. data/test/models/message.rb +5 -0
  531. data/test/models/minimalistic.rb +2 -0
  532. data/test/models/minivan.rb +3 -2
  533. data/test/models/mixed_case_monkey.rb +3 -1
  534. data/test/models/molecule.rb +2 -0
  535. data/test/models/mouse.rb +6 -0
  536. data/test/models/movie.rb +2 -0
  537. data/test/models/node.rb +4 -2
  538. data/test/models/non_primary_key.rb +2 -0
  539. data/test/models/notification.rb +2 -0
  540. data/test/models/numeric_data.rb +12 -0
  541. data/test/models/order.rb +4 -2
  542. data/test/models/organization.rb +9 -7
  543. data/test/models/other_dog.rb +3 -1
  544. data/test/models/owner.rb +6 -4
  545. data/test/models/parrot.rb +12 -4
  546. data/test/models/person.rb +59 -54
  547. data/test/models/personal_legacy_thing.rb +3 -1
  548. data/test/models/pet.rb +4 -2
  549. data/test/models/pet_treasure.rb +2 -0
  550. data/test/models/pirate.rb +67 -43
  551. data/test/models/possession.rb +3 -1
  552. data/test/models/post.rb +184 -86
  553. data/test/models/price_estimate.rb +11 -1
  554. data/test/models/professor.rb +3 -1
  555. data/test/models/project.rb +14 -12
  556. data/test/models/publisher/article.rb +2 -0
  557. data/test/models/publisher/magazine.rb +2 -0
  558. data/test/models/publisher.rb +2 -0
  559. data/test/models/randomly_named_c1.rb +2 -0
  560. data/test/models/rating.rb +5 -1
  561. data/test/models/reader.rb +7 -5
  562. data/test/models/recipe.rb +2 -0
  563. data/test/models/record.rb +2 -0
  564. data/test/models/reference.rb +6 -3
  565. data/test/models/reply.rb +39 -21
  566. data/test/models/room.rb +6 -0
  567. data/test/models/section.rb +6 -0
  568. data/test/models/seminar.rb +6 -0
  569. data/test/models/session.rb +6 -0
  570. data/test/models/ship.rb +12 -9
  571. data/test/models/ship_part.rb +5 -3
  572. data/test/models/shop.rb +4 -2
  573. data/test/models/shop_account.rb +2 -0
  574. data/test/models/speedometer.rb +2 -0
  575. data/test/models/sponsor.rb +8 -5
  576. data/test/models/squeak.rb +6 -0
  577. data/test/models/strict_zine.rb +7 -0
  578. data/test/models/string_key_object.rb +2 -0
  579. data/test/models/student.rb +2 -0
  580. data/test/models/subscriber.rb +4 -2
  581. data/test/models/subscription.rb +5 -1
  582. data/test/models/tag.rb +6 -3
  583. data/test/models/tagging.rb +13 -6
  584. data/test/models/task.rb +2 -0
  585. data/test/models/topic.rb +54 -19
  586. data/test/models/toy.rb +4 -0
  587. data/test/models/traffic_light.rb +2 -0
  588. data/test/models/treasure.rb +5 -3
  589. data/test/models/treaty.rb +2 -4
  590. data/test/models/tree.rb +2 -0
  591. data/test/models/tuning_peg.rb +2 -0
  592. data/test/models/tyre.rb +2 -0
  593. data/test/models/user.rb +12 -4
  594. data/test/models/uuid_child.rb +2 -0
  595. data/test/models/uuid_item.rb +2 -0
  596. data/test/models/uuid_parent.rb +2 -0
  597. data/test/models/vegetables.rb +12 -3
  598. data/test/models/vertex.rb +6 -4
  599. data/test/models/warehouse_thing.rb +2 -0
  600. data/test/models/wheel.rb +3 -1
  601. data/test/models/without_table.rb +3 -1
  602. data/test/models/zine.rb +3 -1
  603. data/test/schema/mysql2_specific_schema.rb +49 -35
  604. data/test/schema/oracle_specific_schema.rb +13 -15
  605. data/test/schema/postgresql_specific_schema.rb +51 -40
  606. data/test/schema/schema.rb +334 -154
  607. data/test/schema/sqlite_specific_schema.rb +9 -16
  608. data/test/support/config.rb +26 -26
  609. data/test/support/connection.rb +14 -8
  610. data/test/support/connection_helper.rb +3 -1
  611. data/test/support/ddl_helper.rb +2 -0
  612. data/test/support/marshal_compatibility_fixtures/IBM_DB/rails_6_0_topic.dump +0 -0
  613. data/test/support/marshal_compatibility_fixtures/IBM_DB/rails_6_0_topic_associations.dump +0 -0
  614. data/test/support/marshal_compatibility_fixtures/Mysql2/rails_6_0_topic.dump +0 -0
  615. data/test/support/marshal_compatibility_fixtures/Mysql2/rails_6_0_topic_associations.dump +0 -0
  616. data/test/support/marshal_compatibility_fixtures/PostgreSQL/rails_6_0_topic.dump +0 -0
  617. data/test/support/marshal_compatibility_fixtures/PostgreSQL/rails_6_0_topic_associations.dump +0 -0
  618. data/test/support/marshal_compatibility_fixtures/SQLite/rails_6_0_topic.dump +0 -0
  619. data/test/support/marshal_compatibility_fixtures/SQLite/rails_6_0_topic_associations.dump +0 -0
  620. data/test/support/marshal_compatibility_fixtures/legacy_6_0_record_mysql.dump +0 -0
  621. data/test/support/marshal_compatibility_fixtures/legacy_relation.dump +0 -0
  622. data/test/support/schema_dumping_helper.rb +2 -0
  623. data/test/support/stubs/strong_parameters.rb +40 -0
  624. data/test/support/yaml_compatibility_fixtures/rails_v1_mysql.yml +206 -0
  625. data/test/support/yaml_compatibility_fixtures/rails_v2.yml +55 -0
  626. metadata +230 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31e8f41e222f638241d0797fa0d898d0152372df6bf6479477299e3ef0f1accc
4
- data.tar.gz: d8711fcf90d18465ad55a76c8661bdcd17a683652f0b08389fdbfcd578099fae
3
+ metadata.gz: c9605489de181d50e5e8defe66fa1e083a299388e69b9e8f3a6211200b13cb44
4
+ data.tar.gz: bfe3f0ba783408e6cf11f62b331a7ca8e2189c4af71dba239dc894bbfb704ea0
5
5
  SHA512:
6
- metadata.gz: bc300c1dace4fc524b5f6124dbe51d4000be3fb6a1556083dc3d5a5798ab62cfb058aa248db7f7b308bbcebc8705956c241bf606089f07e19f4b9b0f7dc00d71
7
- data.tar.gz: 9c0ea6ac28a2ad48902ad4e539c952d294f461fc6ee391ea8df27278d21dc8b6c54a960778eb57db08a8752992b78335c83fe772948b58242ceb430f75b962b0
6
+ metadata.gz: 504be4e04c7cbc9d738925449ecaf3c6611f426bd8a5fc4baf476c98066ff8a8062cd052986306a7493ccb5e63c613f424bb39f6590e28ef272ac78ecc93d940
7
+ data.tar.gz: 005dd0ed208875517f8807d5090d8eae73e2eba0b818732ef1eaa3006bd63d9ea75d1ac73175d3aa299318b5f4535dc01c53c7fca855a71dabdfcf1c9af449c3
data/CHANGES CHANGED
@@ -1,5 +1,34 @@
1
1
  Change Log
2
2
  ==============
3
+ 2025/06/09 (IBM_DB adapter 5.6.1, driver 3.2.0)
4
+ - Rails < 7.2 is not campatible with Adapter 5.6.0 Onwards.
5
+
6
+ 2025/06/03 (IBM_DB adapter 5.6.0, driver 3.2.0)
7
+ - Support for ruby 3.3 and rails 7.2.2.1
8
+
9
+ 2024/12/13 (IBM_DB adapter 5.5.1, driver 3.1.1)
10
+ - Support for MAC ARM64
11
+
12
+ 2024/07/10 (IBM_DB adapter 5.5.0, driver 3.1.0)
13
+ - Support for ruby 3.2 and rails 7.1.3.2
14
+
15
+ 2023/10/11 (IBM_DB adapter 5.4.2, driver 3.1.0)
16
+ - config.yml to have Environment variables to specify credentials.
17
+
18
+ 2023/03/29 (IBM_DB adapter 5.4.1, driver 3.1.0)
19
+ - Download clidriver issue fixed and replaced http links with https.
20
+
21
+ 2023/01/06 (IBM_DB adapter 5.4.0, driver 3.1.0)
22
+ - Support for Ruby 3.1 and Rails 7.0
23
+
24
+ 2022/10/06 (IBM_DB adapter 5.3.2, driver 3.0.6)
25
+ - Allowed all rails versions < 6.2 in gemspec, replaced limit clause with FETCH FIRST n ROWS
26
+
27
+ 2022/09/21 (IBM_DB adapter 5.3.1, driver 3.0.6)
28
+ - Yanked version 5.3.0 as package includes clidriver
29
+
30
+ 2022/09/17 (IBM_DB adapter 5.3.0, driver 3.0.6)
31
+ - Support for Ruby 3.0 and Rails 6.1
3
32
 
4
33
  2018/05/24 (IBM_DB adapter 4.0.0, driver 3.0.5)
5
34
  - Rails 5.0.7 Toleration support. New features of Active Record 5.0.7 are not added also none of the open issue are fixed in this release.
data/LICENSE CHANGED
@@ -1,18 +1,55 @@
1
- Copyright (c) 2006 - 2018 IBM Corporation
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the "Software"),
5
- to deal in the Software without restriction, including without limitation
6
- the rights to use, copy, modify, merge, publish, distribute, sublicense,
7
- and/or sell copies of the Software, and to permit persons to whom the Software
8
- is furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included
11
- in all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
14
- INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
15
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
16
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
18
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10
+
11
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12
+
13
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14
+
15
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16
+
17
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18
+
19
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20
+
21
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22
+
23
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24
+
25
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26
+
27
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28
+
29
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
30
+
31
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
32
+
33
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34
+
35
+ 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
36
+
37
+ 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
38
+
39
+ 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40
+
41
+ 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
42
+
43
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44
+
45
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46
+
47
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48
+
49
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50
+
51
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52
+
53
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54
+
55
+ END OF TERMS AND CONDITIONS
data/README CHANGED
@@ -1,6 +1,6 @@
1
1
  =====================================================================
2
- README for the IBM_DB Adapter (5.0.0) and Driver (3.0.5)
3
- For ActiveRecord Version >= 5.0.7 (and Rails >= 5.0.7)
2
+ README for the IBM_DB Adapter >= 5.5.0 and Driver >= 3.1.0
3
+ For ActiveRecord Version >= 7.1.x (and Rails >= 7.1.x)
4
4
  =====================================================================
5
5
 
6
6
  Supported Operating Systems
@@ -10,6 +10,7 @@ Supported Operating Systems
10
10
  - IBM AIX 32/64 bit
11
11
  - HP-UX 32/64 bit
12
12
  - Sun Solaris 32/64 bit
13
+ - MAC M1 ARM 64 bit
13
14
 
14
15
 
15
16
  Supported Databases
@@ -133,6 +134,7 @@ Testing the IBM_DB Adapter
133
134
  2) Edit the Rakefile to include ibm_db in list of adapters
134
135
  %w( mysql mysql2 postgresql sqlite3 sqlite3_mem firebird db2 oracle sybase openbase ibm_db frontbase jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb )
135
136
  3) Configure the connection information in test/config.yml for ibm_db
137
+ Set Environment Variables DB2_USER1, DB2_PASSWD1, DB2_DATABASE1, DB2_HOST1, DB2_PORT1 etc... accordingly.
136
138
  4) run the test suite - rake test_ibm_db
137
139
 
138
140
  Running IBM_DB driver test suite
data/ext/Makefile CHANGED
@@ -3,6 +3,7 @@ SHELL = /bin/sh
3
3
 
4
4
  # V=0 quiet, V=1 verbose. other values don't work.
5
5
  V = 0
6
+ V0 = $(V:0=)
6
7
  Q1 = $(V:1=)
7
8
  Q = $(Q1:0=@)
8
9
  ECHO1 = $(V:1=@ :)
@@ -12,12 +13,12 @@ NULLCMD = :
12
13
  #### Start of system configuration section. ####
13
14
 
14
15
  srcdir = .
15
- topdir = /home/rakhil/ruby_exe/include/ruby-2.6.0
16
+ topdir = /home/pnarayanappa/ROR33/ruby_exe/include/ruby-3.3.0
16
17
  hdrdir = $(topdir)
17
- arch_hdrdir = /home/rakhil/ruby_exe/include/ruby-2.6.0/x86_64-linux
18
+ arch_hdrdir = /home/pnarayanappa/ROR33/ruby_exe/include/ruby-3.3.0/x86_64-linux
18
19
  PATH_SEPARATOR = :
19
20
  VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
20
- prefix = $(DESTDIR)/home/rakhil/ruby_exe
21
+ prefix = $(DESTDIR)/home/pnarayanappa/ROR33/ruby_exe
21
22
  rubysitearchprefix = $(rubylibprefix)/$(sitearch)
22
23
  rubyarchprefix = $(rubylibprefix)/$(arch)
23
24
  rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
@@ -78,24 +79,24 @@ CSRCFLAG = $(empty)
78
79
 
79
80
  RUBY_EXTCONF_H = unicode_support_version.h
80
81
  cflags = $(optflags) $(debugflags) $(warnflags)
81
- cxxflags = $(optflags) $(debugflags) $(warnflags)
82
- optflags = -O3
82
+ cxxflags =
83
+ optflags = -O3 -fno-fast-math
83
84
  debugflags = -ggdb3
84
- warnflags = -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wrestrict -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable
85
+ warnflags = -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef
85
86
  cppflags =
86
87
  CCDLFLAGS = -fPIC
87
88
  CFLAGS = $(CCDLFLAGS) $(cflags) $(ARCH_FLAG)
88
89
  INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
89
90
  DEFS =
90
- CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include $(DEFS) $(cppflags)
91
- CXXFLAGS = $(CCDLFLAGS) $(cxxflags) $(ARCH_FLAG)
91
+ CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/home/pnarayanappa/ROR33/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include $(DEFS) $(cppflags)
92
+ CXXFLAGS = $(CCDLFLAGS) $(ARCH_FLAG)
92
93
  ldflags = -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic
93
94
  dldflags = -Wl,--compress-debug-sections=zlib
94
95
  ARCH_FLAG =
95
96
  DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
96
97
  LDSHARED = $(CC) -shared
97
98
  LDSHAREDXX = $(CXX) -shared
98
- AR = ar
99
+ AR = gcc-ar
99
100
  EXEEXT =
100
101
 
101
102
  RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
@@ -107,15 +108,16 @@ RUBY_BASE_NAME = ruby
107
108
 
108
109
  arch = x86_64-linux
109
110
  sitearch = $(arch)
110
- ruby_version = 2.6.0
111
+ ruby_version = 3.3.0
111
112
  ruby = $(bindir)/$(RUBY_BASE_NAME)
112
113
  RUBY = $(ruby)
114
+ BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
113
115
  ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h $(RUBY_EXTCONF_H)
114
116
 
115
117
  RM = rm -f
116
- RM_RF = $(RUBY) -run -e rm -- -rf
118
+ RM_RF = rm -fr
117
119
  RMDIRS = rmdir --ignore-fail-on-non-empty -p
118
- MAKEDIRS = /bin/mkdir -p
120
+ MAKEDIRS = /usr/bin/mkdir -p
119
121
  INSTALL = /usr/bin/install -c
120
122
  INSTALL_PROG = $(INSTALL) -m 0755
121
123
  INSTALL_DATA = $(INSTALL) -m 644
@@ -125,8 +127,8 @@ TOUCH = exit >
125
127
  #### End of system configuration section. ####
126
128
 
127
129
  preload =
128
- libpath = . $(libdir) /work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib
129
- LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir) -L/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/work/rakhil/ruby_5.1.0/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib'
130
+ libpath = . $(libdir) /home/pnarayanappa/ROR33/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib
131
+ LIBPATH = -L. -L$(libdir) -Wl,-rpath,$(libdir) -L/home/pnarayanappa/ROR33/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib -Wl,-rpath,/home/pnarayanappa/ROR33/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib'
130
132
  DEFFILE =
131
133
 
132
134
  CLEANFILES = mkmf.log
@@ -137,11 +139,11 @@ extout =
137
139
  extout_prefix =
138
140
  target_prefix =
139
141
  LOCAL_LIBS =
140
- LIBS = -ldb2 -lm -lc
142
+ LIBS = -ldb2 -lm -lpthread -lc
141
143
  ORIG_SRCS = ibm_db.c ruby_ibm_db_cli.c
142
144
  SRCS = $(ORIG_SRCS)
143
145
  OBJS = ibm_db.o ruby_ibm_db_cli.o
144
- HDRS = $(srcdir)/unicode_support_version.h $(srcdir)/ruby_ibm_db.h $(srcdir)/gil_release_version.h $(srcdir)/ruby_ibm_db_cli.h
146
+ HDRS = $(srcdir)/gil_release_version.h $(srcdir)/ruby_ibm_db.h $(srcdir)/ruby_ibm_db_cli.h $(srcdir)/unicode_support_version.h
145
147
  LOCAL_HDRS =
146
148
  TARGET = ibm_db
147
149
  TARGET_NAME = ibm_db
@@ -155,12 +157,13 @@ BINDIR = $(bindir)
155
157
  RUBYCOMMONDIR = $(sitedir)$(target_prefix)
156
158
  RUBYLIBDIR = $(sitelibdir)$(target_prefix)
157
159
  RUBYARCHDIR = $(sitearchdir)$(target_prefix)
158
- HDRDIR = $(rubyhdrdir)/ruby$(target_prefix)
159
- ARCHHDRDIR = $(rubyhdrdir)/$(arch)/ruby$(target_prefix)
160
+ HDRDIR = $(sitehdrdir)$(target_prefix)
161
+ ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
160
162
  TARGET_SO_DIR =
161
163
  TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
162
- CLEANLIBS = $(TARGET_SO)
163
- CLEANOBJS = *.o *.bak
164
+ CLEANLIBS = $(TARGET_SO) false
165
+ CLEANOBJS = $(OBJS) *.bak
166
+ TARGET_SO_DIR_TIMESTAMP = $(TIMESTAMP_DIR)/.sitearchdir.time
164
167
 
165
168
  all: $(DLLIB)
166
169
  static: $(STATIC_LIB)
@@ -172,7 +175,7 @@ clean-rb-default::
172
175
  clean-rb::
173
176
  clean-so::
174
177
  clean: clean-so clean-static clean-rb-default clean-rb
175
- -$(Q)$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
178
+ -$(Q)$(RM_RF) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
176
179
 
177
180
  distclean-rb-default::
178
181
  distclean-rb::
@@ -186,7 +189,7 @@ distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
186
189
  realclean: distclean
187
190
  install: install-so install-rb
188
191
 
189
- install-so: $(DLLIB) $(TIMESTAMP_DIR)/.sitearchdir.time
192
+ install-so: $(DLLIB) $(TARGET_SO_DIR_TIMESTAMP)
190
193
  $(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
191
194
  clean-static::
192
195
  -$(Q)$(RM) $(STATIC_LIB)
@@ -198,7 +201,7 @@ do-install-rb:
198
201
  do-install-rb-default:
199
202
  pre-install-rb-default:
200
203
  @$(NULLCMD)
201
- $(TIMESTAMP_DIR)/.sitearchdir.time:
204
+ $(TARGET_SO_DIR_TIMESTAMP):
202
205
  $(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
203
206
  $(Q) $(TOUCH) $@
204
207
 
data/ext/extconf.rb CHANGED
@@ -5,12 +5,12 @@ require 'rubygems/package'
5
5
  require 'zlib'
6
6
  require 'zip'
7
7
  require 'fileutils'
8
-
8
+ require 'down'
9
9
 
10
10
  # +----------------------------------------------------------------------+
11
11
  # | Licensed Materials - Property of IBM |
12
12
  # | |
13
- # | (C) Copyright IBM Corporation 2006 - 2016 |
13
+ # | (C) Copyright IBM Corporation 2006 - 2024 |
14
14
  # +----------------------------------------------------------------------+
15
15
 
16
16
  TAR_LONGLINK = '././@LongLink'
@@ -49,50 +49,53 @@ if(RUBY_PLATFORM =~ /aix/i)
49
49
  #AIX
50
50
  if(is64Bit)
51
51
  puts "Detected platform - aix 64"
52
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/aix64_odbc_cli.tar.gz"
52
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/aix64_odbc_cli.tar.gz"
53
53
  else
54
54
  puts "Detected platform - aix 32"
55
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/aix32_odbc_cli.tar.gz"
55
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/aix32_odbc_cli.tar.gz"
56
56
  end
57
57
  elsif (RUBY_PLATFORM =~ /powerpc/ || RUBY_PLATFORM =~ /ppc/)
58
58
  #PPC
59
59
  if(is64Bit)
60
60
  puts "Detected platform - ppc linux 64"
61
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ppc64_odbc_cli.tar.gz"
61
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ppc64_odbc_cli.tar.gz"
62
62
  else
63
63
  puts "Detected platform - ppc linux 64"
64
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ppc32_odbc_cli.tar.gz"
64
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ppc32_odbc_cli.tar.gz"
65
65
  end
66
66
  elsif (RUBY_PLATFORM =~ /linux/)
67
67
  #x86
68
68
  if(is64Bit)
69
69
  puts "Detected platform - linux x86 64"
70
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxx64_odbc_cli.tar.gz"
70
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxx64_odbc_cli.tar.gz"
71
71
  else
72
72
  puts "Detected platform - linux 32"
73
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxia32_odbc_cli.tar.gz"
73
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxia32_odbc_cli.tar.gz"
74
74
  end
75
75
  elsif (RUBY_PLATFORM =~ /sparc/i)
76
76
  #Solaris
77
77
  if(is64Bit)
78
78
  puts "Detected platform - sun sparc64"
79
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sun64_odbc_cli.tar.gz"
79
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sun64_odbc_cli.tar.gz"
80
80
  else
81
81
  puts "Detected platform - sun sparc32"
82
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sun32_odbc_cli.tar.gz"
82
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sun32_odbc_cli.tar.gz"
83
83
  end
84
84
  elsif (RUBY_PLATFORM =~ /solaris/i)
85
85
  if(is64Bit)
86
86
  puts "Detected platform - sun amd64"
87
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sunamd64_odbc_cli.tar.gz"
87
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sunamd64_odbc_cli.tar.gz"
88
88
  else
89
89
  puts "Detected platform - sun amd32"
90
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sunamd32_odbc_cli.tar.gz"
90
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/sunamd32_odbc_cli.tar.gz"
91
91
  end
92
92
  elsif (RUBY_PLATFORM =~ /darwin/i)
93
- if(is64Bit)
94
- puts "Detected platform - MacOS darwin64"
95
- DOWNLOADLINK = "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/macos64_odbc_cli.tar.gz"
93
+ if (RUBY_PLATFORM =~ /arm64/i)
94
+ puts "Detected platform - MacOS darwin arm64"
95
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/macarm64_odbc_cli.tar.gz"
96
+ elsif(RUBY_PLATFORM =~ /x86_64/i || is64Bit)
97
+ puts "Detected platform - MacOS darwin x86_64"
98
+ DOWNLOADLINK = "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/macos64_odbc_cli.tar.gz"
96
99
  else
97
100
  puts "Mac OS 32 bit not supported. Please use an x64 architecture."
98
101
  end
@@ -100,10 +103,10 @@ elsif (RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/)
100
103
  ZIP = true
101
104
  if(is64Bit)
102
105
  puts "Detected platform - windows 64"
103
- DOWNLOADLINK= "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ntx64_odbc_cli.zip"
106
+ DOWNLOADLINK= "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ntx64_odbc_cli.zip"
104
107
  else
105
108
  puts "Detected platform - windows 32"
106
- DOWNLOADLINK= "http://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/nt32_odbc_cli.zip"
109
+ DOWNLOADLINK= "https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/nt32_odbc_cli.zip"
107
110
  end
108
111
  end
109
112
 
@@ -114,24 +117,13 @@ def downloadCLIPackage(destination, link = nil)
114
117
  downloadLink = link
115
118
  end
116
119
 
117
- uri = URI.parse(downloadLink)
118
120
  if ZIP
119
121
  filename = "#{destination}/clidriver.zip"
120
122
  else
121
123
  filename = "#{destination}/clidriver.tar.gz"
122
124
  end
123
-
124
- headers = {
125
- 'Accept-Encoding' => 'identity',
126
- }
127
-
128
- request = Net::HTTP::Get.new(uri.request_uri, headers)
129
- http = Net::HTTP.new(uri.host, uri.port)
130
- response = http.request(request)
131
-
132
- f = open(filename, 'wb')
133
- f.write(response.body)
134
- f.close()
125
+
126
+ Down.download(downloadLink, destination: filename, ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE)
135
127
 
136
128
  filename
137
129
  end
@@ -162,11 +154,17 @@ def untarCLIPackage(archive,destination)
162
154
  FileUtils.mkdir_p file, :mode => entry.header.mode, :verbose => false
163
155
  elsif entry.file?
164
156
  FileUtils.rm_rf file if File.directory? file
157
+ if (RUBY_PLATFORM =~ /darwin/i) && (RUBY_PLATFORM =~ /arm64/i) && File.exist?(file)
158
+ FileUtils.chmod 755, file, :verbose => false
159
+ end
165
160
  File.open file, "wb" do |f|
166
161
  f.print entry.read
167
162
  end
168
163
  FileUtils.chmod entry.header.mode, file, :verbose => false
169
164
  elsif entry.header.typeflag == '2' #Symlink!
165
+ if (RUBY_PLATFORM =~ /darwin/i) && (RUBY_PLATFORM =~ /arm64/i) && File.exist?(file)
166
+ File.delete file if File.file? file
167
+ end
170
168
  File.symlink entry.header.linkname, file
171
169
  end
172
170
  end
@@ -242,7 +240,7 @@ def crash(str)
242
240
  exit 1
243
241
  end
244
242
 
245
- if( RUBY_VERSION =~ /1.9/ || RUBY_VERSION =~ /2./)
243
+ if( RUBY_VERSION =~ /1.9/ || RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
246
244
  create_header('gil_release_version.h')
247
245
  create_header('unicode_support_version.h')
248
246
  end
@@ -266,14 +264,14 @@ step 3: - Retry gem install
266
264
  EOL
267
265
  end
268
266
 
269
- if(RUBY_VERSION =~ /2./)
267
+ if(RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
270
268
  require 'rbconfig'
271
269
  end
272
270
 
273
271
  alias :libpathflag0 :libpathflag
274
272
  def libpathflag(libpath)
275
273
  if(RUBY_PLATFORM =~ /darwin/i)
276
- if(RUBY_VERSION =~ /2./)
274
+ if(RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
277
275
  libpathflag0 + case RbConfig::CONFIG["arch"]
278
276
  when /solaris2/
279
277
  libpath[0..-2].map {|path| " -R#{path}"}.join
@@ -293,7 +291,7 @@ def libpathflag(libpath)
293
291
  end
294
292
  end
295
293
  else
296
- if(RUBY_VERSION =~ /2./)
294
+ if(RUBY_VERSION =~ /2./ || RUBY_VERSION =~ /3./)
297
295
  ldflags = case RbConfig::CONFIG["arch"]
298
296
  when /solaris2/
299
297
  libpath[0..-2].map {|path| " -R#{path}"}.join