sqlean 0.2.0-x86_64-linux-musl → 0.3.0-x86_64-linux-musl

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: 3962959c4eb4ada8f72eb8abf540d71d258f903acdc21994ca65bb7c8cfe3e42
4
- data.tar.gz: b5dfea476786d3216763f6862a6f322473c94896e878ff7e43098a654998b493
3
+ metadata.gz: ef0239292e01458bc2e03a430d57ebc54747405b0e250c1abc9b816b3619b95e
4
+ data.tar.gz: f4c3a582687503d40d65346b93047712332eed67313668d6edc00a76c026bae3
5
5
  SHA512:
6
- metadata.gz: be2e1356c9d6f46741fffd633349bdedbc42430ab08db54a99234082347a923ec1f1fce18d4b130b1009ddb044e02c31d43f708e2474d54e1c07aff1650e61b6
7
- data.tar.gz: a7439a9bc69cf42a9f8725d575183fb4fe01d45f111f62419d16060dc69c6512adafd5a28d62b21ba259449de9431ce6431e2153b727abbf5d678e05814de7f6
6
+ metadata.gz: a0510d0e448bfeb9b6c2bf3c35c74116123410894abe78709abea83d58faf70ac4c1609b842569f48bd7ee59b3978dffe1ed839649b08e4c290918aaf85f0e33
7
+ data.tar.gz: 43bbe3a2a626edb96b791e958042d3414128543f34d3bc2f6a79033c00d849fbcd52526091ae45c6ba25bf9c3c31f95ce97d9bc64aa536d5af2faba2d8193f06
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-musl
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