arql 0.3.19 → 0.3.20
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/Gemfile.lock +6 -3
- data/lib/arql/app.rb +1 -1
- data/lib/arql/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4213df09fecc5fbe0095f47e7df8ac016dd7021c4881c11599e56006c4189317
|
|
4
|
+
data.tar.gz: e66f7ec8f2418714404d19c569e76889ccdfc21cd1668e17a1be0e8fd9a9e569
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc3b1afae2f5a7036964272708134085ab9e10a6022827c7e5ca41b09d164527a6ad80430934136b2e63bb2cc13a9fa73525ef1ccb8b48623ce86b643b295a8f
|
|
7
|
+
data.tar.gz: d3608d06380e34889ea24be7d0b1142b690800cfba1049cfc35f83578652cc8637084dfcd6f7bc432cdf130e7d200a52020856570791fc2e7a4bce1f0a4f9f1e
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
arql (0.3.
|
|
4
|
+
arql (0.3.20)
|
|
5
5
|
activerecord (>= 6.1.5, < 7.1.0)
|
|
6
6
|
activesupport (>= 6.1.5, < 7.1.0)
|
|
7
7
|
caxlsx (~> 3.3.0)
|
|
@@ -51,12 +51,14 @@ GEM
|
|
|
51
51
|
kaminari-core (1.2.2)
|
|
52
52
|
marcel (1.0.2)
|
|
53
53
|
method_source (1.0.0)
|
|
54
|
+
mini_portile2 (2.8.1)
|
|
54
55
|
minitest (5.16.3)
|
|
55
56
|
mysql2 (0.5.4)
|
|
56
57
|
net-ssh (7.0.1)
|
|
57
58
|
net-ssh-gateway (2.0.0)
|
|
58
59
|
net-ssh (>= 4.0.0)
|
|
59
|
-
nokogiri (1.13.10
|
|
60
|
+
nokogiri (1.13.10)
|
|
61
|
+
mini_portile2 (~> 2.8.0)
|
|
60
62
|
racc (~> 1.4)
|
|
61
63
|
pry (0.14.1)
|
|
62
64
|
coderay (~> 1.1)
|
|
@@ -78,7 +80,8 @@ GEM
|
|
|
78
80
|
nokogiri (~> 1)
|
|
79
81
|
rubyzip (>= 1.3.0, < 3.0.0)
|
|
80
82
|
rubyzip (2.3.2)
|
|
81
|
-
sqlite3 (1.5.4
|
|
83
|
+
sqlite3 (1.5.4)
|
|
84
|
+
mini_portile2 (~> 2.8.0)
|
|
82
85
|
table_print (1.5.7)
|
|
83
86
|
terminal-table (1.8.0)
|
|
84
87
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
data/lib/arql/app.rb
CHANGED
|
@@ -49,7 +49,7 @@ module Arql
|
|
|
49
49
|
def load_initializer!
|
|
50
50
|
return unless effective_config[:initializer]
|
|
51
51
|
initializer_file = File.expand_path(effective_config[:initializer])
|
|
52
|
-
unless File.
|
|
52
|
+
unless File.exist?(initializer_file)
|
|
53
53
|
STDERR.puts "Specified initializer file not found, #{effective_config[:initializer]}"
|
|
54
54
|
exit(1)
|
|
55
55
|
end
|
data/lib/arql/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Liu Xiang
|
|
@@ -321,7 +321,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
321
321
|
- !ruby/object:Gem::Version
|
|
322
322
|
version: '0'
|
|
323
323
|
requirements: []
|
|
324
|
-
rubygems_version: 3.
|
|
324
|
+
rubygems_version: 3.4.1
|
|
325
325
|
signing_key:
|
|
326
326
|
specification_version: 4
|
|
327
327
|
summary: Rails ActiveRecord + Pry is the best SQL query editor
|