sqlean 0.2.0-x86_64-darwin → 0.3.0-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c7aacb3c13d074a79e9d8d9fce51e23eef0b27ed6c0823b32dd49637b7f0793
4
- data.tar.gz: 0170b3e9153564cb664663eff56e706b1a3fcd74ff8ca2a2ddc86f707aef738f
3
+ metadata.gz: 91c2a4e3b2a172800b90dee3a5b7922cc2fc6b84adc127dcd0babe58c87d3433
4
+ data.tar.gz: 071f389c6b0c47221cf380389cd46a765e00e59543d5c967e3366736f5e52088
5
5
  SHA512:
6
- metadata.gz: 7f970cec5cad03758ac525feeaed059c1e8efc5f55d2766d92bc68ebc45564936b5f77294ed8b99cdd5939b7f75603b205f024db80920a0e1e72941a593bca32
7
- data.tar.gz: 6bc54f6c300206985bc4b9eb29d85febb0de936e846b00abad4423bbc1fe645953099e00f930517d44e047ccb4fac5f28b5a40689b1f1a4c5958e216a85ad06a
6
+ metadata.gz: 8d7635741c79adb672557c34c72b126344bbbca5d1dbabdf0966cbaa6ecc494d57e780db6cc5c414c9922b75f1901248159e13fee5d7602074cd76578648fee3
7
+ data.tar.gz: 72450d2506d9265f8d82e9eccf154dfaa93661406c183ae302334b8271d0007013e62c5512ca31a502b88686cf448f72b2bf117d71bb73402ddbe9b75ab417e4
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-darwin
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