sqlean 0.2.0-x86_64-linux-gnu → 0.3.0-x86_64-linux-gnu

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25fe0d40ea1024689127ec0481bbd9fd561796b11d8a29d78dfa3ca5cca73992
4
- data.tar.gz: 73a0912742c7d7a6e5ce528abe00368dcd8907f75878f3819ebdb092e4e9a295
3
+ metadata.gz: a4c1d5ebf4f7214f0ee11051a9b8cf8fc1bd48edd30f2c22431e2a2907e7ab01
4
+ data.tar.gz: b99270315af5760513e4fb20a6ed8cd0147bf858d889fb1182d09696a229e76c
5
5
  SHA512:
6
- metadata.gz: 05a7d280fb707c3b5137602fbc0393f64b0364a7a1928a775adca5e971b5c4f6e3c59e206bd23640309861c6864731831ad988fad6d03b0c4a4a69cdd6d84f0b
7
- data.tar.gz: be8299114f37a9ca9ddec632f51f2c765960b6a8629a71942d4ffc0b151043fa7a7be33bd777c18a4f1fd25448e6159e39b56d51c6cb56ab3783dea2aadfa8b3
6
+ metadata.gz: 411ac28b7dc168d33d5088afafe4076366f10ddd0345d64b501b8c577c79f83b2ffd72637bda10b160fbbe2501340540d7a3f23f3b3503fffc32e673cda439f0
7
+ data.tar.gz: 8e1a4c8a23b6b17305b5e76c91c228c806a8003b4122a5e649f051e9385ff5c2b63b42ca8ab99cf540686aa85d9700d99df0892a7fac4b5b744e584b2c18288e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # SQLean for Ruby Changelog
2
2
 
3
+ ## v0.3.0 / 2024-11-26
4
+
5
+ ### Breaking change
6
+
7
+ - Drop `#sqlite_extension_path` for the simpler `#to_path`. [#3] @flavorjones
8
+
9
+
3
10
  ## v0.2.0 / 2024-11-24
4
11
 
5
12
  - Support for x86_64-linux-musl with self-built extensions.
data/README.md CHANGED
@@ -34,8 +34,8 @@ require "sqlean"
34
34
  db = SQLite3::Database.new("path/to/db.sqlite")
35
35
  db.enable_load_extension(true)
36
36
 
37
- db.load_extension(SQLean.sqlite_extension_path) # load every extension in SQLean
38
- db.load_extension(SQLean::Crypto.sqlite_extension_path) # or load individual extensions
37
+ db.load_extension(SQLean.to_path) # load every extension in SQLean
38
+ db.load_extension(SQLean::Crypto.to_path) # or load individual extensions
39
39
  ```
40
40
 
41
41
  <!-- not available yet!
@@ -73,8 +73,8 @@ require "sqlean"
73
73
 
74
74
  db = Extralite::Database.new("path/to/db.sqlite")
75
75
 
76
- db.load_extension(SQLean.sqlite_extension_path) # load every extension in SQLean
77
- db.load_extension(SQLean::Crypto.sqlite_extension_path) # or load individual extensions
76
+ db.load_extension(SQLean.to_path) # load every extension in SQLean
77
+ db.load_extension(SQLean::Crypto.to_path) # or load individual extensions
78
78
  ```
79
79
 
80
80
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module SQLean
4
4
  # The version of the SQLean gem.
5
- VERSION = "0.2.0"
5
+ VERSION = "0.3.0"
6
6
  end
data/lib/sqlean.rb CHANGED
@@ -10,14 +10,14 @@ module SQLean
10
10
  GEM_NAME = "sqlean"
11
11
 
12
12
  # Returns an absolute path to the SQLean bundle, containing all the SQLean extensions.
13
- def self.sqlite_extension_path
13
+ def self.to_path
14
14
  SQLean.file_path("sqlean")
15
15
  end
16
16
 
17
17
  # https://github.com/nalgeon/sqlean/blob/main/docs/crypto.md
18
18
  module Crypto
19
19
  # Returns an absolute path to the SQLean crypto extension.
20
- def self.sqlite_extension_path
20
+ def self.to_path
21
21
  SQLean.file_path("crypto")
22
22
  end
23
23
  end
@@ -25,7 +25,7 @@ module SQLean
25
25
  # https://github.com/nalgeon/sqlean/blob/main/docs/define.md
26
26
  module Define
27
27
  # Returns an absolute path to the SQLean define extension.
28
- def self.sqlite_extension_path
28
+ def self.to_path
29
29
  SQLean.file_path("define")
30
30
  end
31
31
  end
@@ -33,7 +33,7 @@ module SQLean
33
33
  # https://github.com/nalgeon/sqlean/blob/main/docs/fileio.md
34
34
  module FileIO
35
35
  # Returns an absolute path to the SQLean fileio extension.
36
- def self.sqlite_extension_path
36
+ def self.to_path
37
37
  SQLean.file_path("fileio")
38
38
  end
39
39
  end
@@ -41,7 +41,7 @@ module SQLean
41
41
  # https://github.com/nalgeon/sqlean/blob/main/docs/fuzzy.md
42
42
  module Fuzzy
43
43
  # Returns an absolute path to the SQLean fuzzy extension.
44
- def self.sqlite_extension_path
44
+ def self.to_path
45
45
  SQLean.file_path("fuzzy")
46
46
  end
47
47
  end
@@ -49,7 +49,7 @@ module SQLean
49
49
  # https://github.com/nalgeon/sqlean/blob/main/docs/ipaddr.md
50
50
  module IPAddr
51
51
  # Returns an absolute path to the SQLean ipaddr extension.
52
- def self.sqlite_extension_path
52
+ def self.to_path
53
53
  SQLean.file_path("ipaddr")
54
54
  end
55
55
  end
@@ -57,7 +57,7 @@ module SQLean
57
57
  # https://github.com/nalgeon/sqlean/blob/main/docs/math.md
58
58
  module Math
59
59
  # Returns an absolute path to the SQLean math extension.
60
- def self.sqlite_extension_path
60
+ def self.to_path
61
61
  SQLean.file_path("math")
62
62
  end
63
63
  end
@@ -65,7 +65,7 @@ module SQLean
65
65
  # https://github.com/nalgeon/sqlean/blob/main/docs/regexp.md
66
66
  module Regexp
67
67
  # Returns an absolute path to the SQLean regexp extension.
68
- def self.sqlite_extension_path
68
+ def self.to_path
69
69
  SQLean.file_path("regexp")
70
70
  end
71
71
  end
@@ -73,7 +73,7 @@ module SQLean
73
73
  # https://github.com/nalgeon/sqlean/blob/main/docs/stats.md
74
74
  module Stats
75
75
  # Returns an absolute path to the SQLean stats extension.
76
- def self.sqlite_extension_path
76
+ def self.to_path
77
77
  SQLean.file_path("stats")
78
78
  end
79
79
  end
@@ -81,7 +81,7 @@ module SQLean
81
81
  # https://github.com/nalgeon/sqlean/blob/main/docs/text.md
82
82
  module Text
83
83
  # Returns an absolute path to the SQLean text extension.
84
- def self.sqlite_extension_path
84
+ def self.to_path
85
85
  SQLean.file_path("text")
86
86
  end
87
87
  end
@@ -89,7 +89,7 @@ module SQLean
89
89
  # https://github.com/nalgeon/sqlean/blob/main/docs/time.md
90
90
  module Time
91
91
  # Returns an absolute path to the SQLean text extension.
92
- def self.sqlite_extension_path
92
+ def self.to_path
93
93
  SQLean.file_path("time")
94
94
  end
95
95
  end
@@ -97,7 +97,7 @@ module SQLean
97
97
  # https://github.com/nalgeon/sqlean/blob/main/docs/unicode.md
98
98
  module Unicode
99
99
  # Returns an absolute path to the SQLean unicode extension.
100
- def self.sqlite_extension_path
100
+ def self.to_path
101
101
  SQLean.file_path("unicode")
102
102
  end
103
103
  end
@@ -105,7 +105,7 @@ module SQLean
105
105
  # https://github.com/nalgeon/sqlean/blob/main/docs/uuid.md
106
106
  module UUID
107
107
  # Returns an absolute path to the SQLean uuid extension.
108
- def self.sqlite_extension_path
108
+ def self.to_path
109
109
  SQLean.file_path("uuid")
110
110
  end
111
111
  end
@@ -113,7 +113,7 @@ module SQLean
113
113
  # https://github.com/nalgeon/sqlean/blob/main/docs/vsv.md
114
114
  module VSV
115
115
  # Returns an absolute path to the SQLean vsv extension.
116
- def self.sqlite_extension_path
116
+ def self.to_path
117
117
  SQLean.file_path("vsv")
118
118
  end
119
119
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlean
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Mike Dalessio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-24 00:00:00.000000000 Z
11
+ date: 2024-11-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Precompiled SQLean extensions for SQLite, packaged for the Ruby ecosystem. Compatible with