db-gui 0.0.3 → 0.0.4
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.md +4 -0
- data/README.md +2 -2
- data/VERSION +1 -1
- data/app/db_gui/model/db_config.rb +18 -14
- data/app/db_gui/view/db_command_form.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: e8036df4dccc81646a039ae1f596d9337146eb11d8c797db665baec7720af497
|
4
|
+
data.tar.gz: d3b32fe1f26b471a278c0c120f1bd4ddf1e48d8d3c914454527df3814eb34ad5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d74eb9ca5bcd71c75e0588f5f94f80277402066ebf26a2e49619c1f22fcc831c76fdf7c1f8707ea776ee9b7f88aee94550b3aa197d58823cc431c1bfbdb2e66b
|
7
|
+
data.tar.gz: f1154b733b50e78dcb388ffdfc3415562ba07a1541cc40e527560ac1e44f3d2c1b9ffabad22484acdf3fa18f8486bb9ff0f526c80d8d0eb6303f8adb17e88a98
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# DB GUI (Database Graphical User Interface) 0.0.
|
1
|
+
# DB GUI (Database Graphical User Interface) 0.0.4
|
2
2
|
## [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 /> Glimmer DSL for LibUI Application](https://github.com/AndyObtiva/glimmer-dsl-libui)
|
3
3
|
[](http://badge.fury.io/rb/db-gui)
|
4
4
|
|
@@ -13,7 +13,7 @@ It currently supports PostgreSQL as a start, with the potential of supporting ma
|
|
13
13
|
|
14
14
|
Run:
|
15
15
|
```
|
16
|
-
gem install db-gui -v0.0.
|
16
|
+
gem install db-gui -v0.0.4
|
17
17
|
```
|
18
18
|
|
19
19
|
## Usage
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
@@ -110,24 +110,28 @@ class DbGui
|
|
110
110
|
|
111
111
|
def db_command_result_count_headers_rows
|
112
112
|
if @db_command_result_count_headers_rows.nil? || db_command_result != @last_db_command_result
|
113
|
-
|
114
|
-
headers = rows = []
|
115
|
-
db_command_result_lines = db_command_result.lines
|
116
|
-
db_command_result_lines.pop if db_command_result_lines.last == "\n"
|
117
|
-
if db_command_result_lines.any?
|
118
|
-
headers = db_command_result_lines.first.split('|').map(&:strip)
|
119
|
-
count_footer = db_command_result_lines.last
|
120
|
-
count_match = count_footer.match(/^\((\d+) row/)
|
121
|
-
if count_match
|
122
|
-
count = count_match[1].to_i
|
123
|
-
rows = db_command_result_lines[2..-2].map {|row| row.split('|').map(&:strip) }
|
124
|
-
end
|
125
|
-
end
|
126
|
-
@db_command_result_count_headers_rows = [count, headers, rows]
|
113
|
+
@db_command_result_count_headers_rows = compute_db_command_result_count_headers_rows
|
127
114
|
@last_db_command_result = db_command_result
|
128
115
|
end
|
129
116
|
@db_command_result_count_headers_rows
|
130
117
|
end
|
118
|
+
|
119
|
+
def compute_db_command_result_count_headers_rows
|
120
|
+
count = 0
|
121
|
+
headers = rows = []
|
122
|
+
db_command_result_lines = db_command_result.lines
|
123
|
+
db_command_result_lines.pop if db_command_result_lines.last == "\n"
|
124
|
+
if db_command_result_lines.any?
|
125
|
+
headers = db_command_result_lines.first.split('|').map(&:strip)
|
126
|
+
count_footer = db_command_result_lines.last
|
127
|
+
count_match = count_footer.match(/^\((\d+) row/)
|
128
|
+
if count_match
|
129
|
+
count = count_match[1].to_i
|
130
|
+
rows = db_command_result_lines[2..-2].map {|row| row.split('|').map(&:strip) }
|
131
|
+
end
|
132
|
+
end
|
133
|
+
[count, headers, rows]
|
134
|
+
end
|
131
135
|
end
|
132
136
|
end
|
133
137
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: db-gui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Maleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: glimmer-dsl-libui
|