ruby-odbc-supported 1.0.0 → 1.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.
- checksums.yaml +4 -4
- data/ChangeLog +3 -0
- data/ruby-odbc-supported-1.0.0.gem +0 -0
- data/ruby-odbc-supported.gemspec +16 -12
- metadata +14 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f104706b404bdf8c0505916b430c29d0fe8b1a3b0429b97ea883410362402e2
|
|
4
|
+
data.tar.gz: a000fcc1ffcc17eefb3c1a86fee9e391e7785bcff22b0fd6f5a4496644befb6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff7fdc92d9e78083b43e294835bbc60b025f07143a406fdb2a7a82cf824dd53ebe1041739bbebe045a7307ea0fbfd30f665df0fe29f4b3fb55a27af98d822eb3
|
|
7
|
+
data.tar.gz: 5b41cee5c2c45d641eecc6adeaebbb6681fdf153e3e0a88e8ba7246e1be805a5942b1f67c53e1ca276a01539c43347a229d1ca79fb9518e272fb02cd39d20c04
|
data/ChangeLog
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
ODBC binding for Ruby
|
|
2
2
|
---------------------
|
|
3
|
+
Fri Nov 14 2025 version 1.0.1 release <jyothu.kr@gmail.com>
|
|
4
|
+
* Revised ruby-odbc-supported.gemspec to add homepage details
|
|
5
|
+
* Updated the gem version to 1.0.1.
|
|
3
6
|
|
|
4
7
|
Fri Nov 14 2025 version 1.0.0 release <jyothu.kr@gmail.com>
|
|
5
8
|
* Renamed the gem from ruby-odbc to ruby-odbc-supported.
|
|
Binary file
|
data/ruby-odbc-supported.gemspec
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
require 'date'
|
|
2
|
+
|
|
2
3
|
spec = Gem::Specification.new do |s|
|
|
3
|
-
s.name
|
|
4
|
-
s.version
|
|
5
|
-
s.date
|
|
6
|
-
|
|
7
|
-
s.
|
|
8
|
-
s.
|
|
9
|
-
|
|
10
|
-
s.
|
|
11
|
-
s.
|
|
12
|
-
s.
|
|
13
|
-
|
|
4
|
+
s.name = "ruby-odbc-supported"
|
|
5
|
+
s.version = "1.0.1"
|
|
6
|
+
s.date = Date.today.to_s
|
|
7
|
+
|
|
8
|
+
s.summary = "Ruby ODBC bindings with extended support for Ruby 3.2–3.4"
|
|
9
|
+
s.description = "A maintained fork of ruby-odbc with compatibility fixes for modern Ruby versions."
|
|
10
|
+
|
|
11
|
+
s.authors = ["Christian Werner", "Jyothish", "Sukeerthi", "Aman Pandey", "Gayathri Rejvade"]
|
|
12
|
+
s.email = ["chw @nospam@ ch-werner.de", "jyothu.kr@gmail.com", "sukeerthiadiga@gmail.com"]
|
|
13
|
+
s.homepage = "https://github.com/cloudvolumes/ruby-odbc-supported"
|
|
14
|
+
|
|
15
|
+
s.files = Dir.glob("**/*")
|
|
16
|
+
s.test_files = Dir.glob('tests/*.rb')
|
|
14
17
|
s.extra_rdoc_files = ["README.rdoc", "COPYING", "ChangeLog", "GPL", "doc/odbc.html"]
|
|
15
|
-
s.
|
|
18
|
+
s.require_paths = ["lib"]
|
|
19
|
+
s.extensions = ["ext/extconf.rb", "ext/utf8/extconf.rb"]
|
|
16
20
|
end
|
metadata
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-odbc-supported
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Werner
|
|
8
|
+
- Jyothish
|
|
9
|
+
- Sukeerthi
|
|
10
|
+
- Aman Pandey
|
|
11
|
+
- Gayathri Rejvade
|
|
8
12
|
autorequire:
|
|
9
13
|
bindir: bin
|
|
10
14
|
cert_chain: []
|
|
11
15
|
date: 2025-11-14 00:00:00.000000000 Z
|
|
12
16
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
17
|
+
description: A maintained fork of ruby-odbc with compatibility fixes for modern Ruby
|
|
18
|
+
versions.
|
|
19
|
+
email:
|
|
20
|
+
- chw @nospam@ ch-werner.de
|
|
21
|
+
- jyothu.kr@gmail.com
|
|
22
|
+
- sukeerthiadiga@gmail.com
|
|
15
23
|
executables: []
|
|
16
24
|
extensions:
|
|
17
25
|
- ext/extconf.rb
|
|
@@ -37,6 +45,7 @@ files:
|
|
|
37
45
|
- ext/utf8/init.c
|
|
38
46
|
- ext/utf8/odbc.c
|
|
39
47
|
- lib/cqgen.rb
|
|
48
|
+
- ruby-odbc-supported-1.0.0.gem
|
|
40
49
|
- ruby-odbc-supported.gemspec
|
|
41
50
|
- test/00connect.rb
|
|
42
51
|
- test/10create_table.rb
|
|
@@ -47,7 +56,7 @@ files:
|
|
|
47
56
|
- test/70close.rb
|
|
48
57
|
- test/test.rb
|
|
49
58
|
- test/utf8/test.rb
|
|
50
|
-
homepage:
|
|
59
|
+
homepage: https://github.com/cloudvolumes/ruby-odbc-supported
|
|
51
60
|
licenses: []
|
|
52
61
|
metadata: {}
|
|
53
62
|
post_install_message:
|
|
@@ -68,5 +77,5 @@ requirements: []
|
|
|
68
77
|
rubygems_version: 3.4.19
|
|
69
78
|
signing_key:
|
|
70
79
|
specification_version: 4
|
|
71
|
-
summary: ODBC
|
|
80
|
+
summary: Ruby ODBC bindings with extended support for Ruby 3.2–3.4
|
|
72
81
|
test_files: []
|