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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b93f7698476d8a7a0eed435d523590e3ba887a372ef56ace685f0fbb7eb66588
4
- data.tar.gz: c3f889910e33eeafb5b3098d63ad47448a1a96a790f12fd2ed3be9e81e7e732a
3
+ metadata.gz: e8036df4dccc81646a039ae1f596d9337146eb11d8c797db665baec7720af497
4
+ data.tar.gz: d3b32fe1f26b471a278c0c120f1bd4ddf1e48d8d3c914454527df3814eb34ad5
5
5
  SHA512:
6
- metadata.gz: 35c78168f441c66d2abdccf95a400cd3302c945dda9f95fb0848b7eaed0bb8f0f38e2a306561d7545d76e9ae0d4d622d333077f9e85eb3160839de0e77c6e738
7
- data.tar.gz: 91dcb7804097dd4383132705da954ad74bed0ca8a9a2e9ca8d8b28f95dad1adbb63a6fa0a8bb32509b202c6bb6914aec647da8711707b08ffb5eb01e868b4e58
6
+ metadata.gz: d74eb9ca5bcd71c75e0588f5f94f80277402066ebf26a2e49619c1f22fcc831c76fdf7c1f8707ea776ee9b7f88aee94550b3aa197d58823cc431c1bfbdb2e66b
7
+ data.tar.gz: f1154b733b50e78dcb388ffdfc3415562ba07a1541cc40e527560ac1e44f3d2c1b9ffabad22484acdf3fa18f8486bb9ff0f526c80d8d0eb6303f8adb17e88a98
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.4
4
+
5
+ - Make SQL command entry a non_wrapping_multiline_entry
6
+
3
7
  ## 0.0.3
4
8
 
5
9
  - Show count of rows produced by a DB command result
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # DB GUI (Database Graphical User Interface) 0.0.3
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
  [![Gem Version](https://badge.fury.io/rb/db-gui.svg)](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.3
16
+ gem install db-gui -v0.0.4
17
17
  ```
18
18
 
19
19
  ## Usage
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
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
- count = 0
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
@@ -11,7 +11,7 @@ class DbGui
11
11
 
12
12
  body {
13
13
  vertical_box {
14
- entry {
14
+ non_wrapping_multiline_entry {
15
15
  text <=> [db_config, :db_command]
16
16
  }
17
17
 
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.3
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-18 00:00:00.000000000 Z
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