gpterm 0.3.0 → 0.4.0
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/lib/gpterm.rb +31 -5
- 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: d489e9f7495f6e7c530508132b7ac59e555f52b7a7d8b6530994e734f9b7888f
|
4
|
+
data.tar.gz: 52fe28bdc566b32a1b1ff27087958f9a93cc13b98c25951861fc7060873b4cda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 789c26d7500808de52244415474e8fcbabf9ef1aceb672cc45e68945dc91e36a768bfc52962ec77bcc05fe8b3c3bb87e0a677849785179b8d142b1b3d4be3064
|
7
|
+
data.tar.gz: 2c8ade2a694e7d9848c22c2e99129bbf8ec0932d7aa43b40770f5797f2a328a639a0523b9af0663fb723ee146192546afcb24d9985774a0b7d74018409b0218c
|
data/lib/gpterm.rb
CHANGED
@@ -1,9 +1,17 @@
|
|
1
1
|
require 'optparse'
|
2
2
|
require 'colorize'
|
3
|
+
require 'open3'
|
3
4
|
|
4
5
|
require_relative 'config'
|
5
6
|
require_relative 'client'
|
6
7
|
|
8
|
+
# The colours work like this:
|
9
|
+
# - Output from STDOUT or STDERR is default
|
10
|
+
# - For the final command, if STDERR is there and the exit code is non-zero, it's red
|
11
|
+
# - Statements from this app are magenta
|
12
|
+
# - Questions from this app are yellow
|
13
|
+
# - Messages from the OpenAI API are blue
|
14
|
+
|
7
15
|
class GPTerm
|
8
16
|
def initialize
|
9
17
|
@config = load_config
|
@@ -25,6 +33,11 @@ class GPTerm
|
|
25
33
|
|
26
34
|
private
|
27
35
|
|
36
|
+
def execute_command(command)
|
37
|
+
stdout, stderr, status = Open3.capture3(command)
|
38
|
+
[stdout, stderr, status.exitstatus]
|
39
|
+
end
|
40
|
+
|
28
41
|
def start_prompt(prompt)
|
29
42
|
message = @client.first_prompt(prompt)
|
30
43
|
|
@@ -49,8 +62,10 @@ class GPTerm
|
|
49
62
|
puts 'Running command...'
|
50
63
|
output = `#{message}`
|
51
64
|
|
52
|
-
|
53
|
-
|
65
|
+
if @config[:verbose]
|
66
|
+
puts 'Output:'
|
67
|
+
puts output
|
68
|
+
end
|
54
69
|
end
|
55
70
|
|
56
71
|
output = offer_more_information(output)
|
@@ -84,10 +99,21 @@ class GPTerm
|
|
84
99
|
exit
|
85
100
|
end
|
86
101
|
|
87
|
-
|
102
|
+
commands = message.split("\n")
|
88
103
|
|
89
|
-
|
90
|
-
|
104
|
+
commands.each do |command|
|
105
|
+
stdout, stderr, exit_status = execute_command(command)
|
106
|
+
if exit_status != 0
|
107
|
+
puts "#{command} failed with the following output:".colorize(:red)
|
108
|
+
puts "#{stderr.gsub(/^/, " ")}".colorize(:red) if stderr.length > 0
|
109
|
+
puts " Exit status: #{exit_status}".colorize(:red)
|
110
|
+
exit
|
111
|
+
end
|
112
|
+
puts stdout if stdout.length > 0
|
113
|
+
# I'm doing this here because git for some reason always returns the output of a push to stderr,
|
114
|
+
# even if it's successful. I don't want to show the output of a successful push as an error.
|
115
|
+
puts stderr if stderr.length > 0
|
116
|
+
end
|
91
117
|
end
|
92
118
|
|
93
119
|
def load_config
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gpterm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Hough
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-openai
|