gpterm 0.3.0 → 0.4.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/client.rb +2 -0
  3. data/lib/gpterm.rb +31 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc7687047e7d6b18c984706991d29e2b3fea168159c3688aac9c039b98f63974
4
- data.tar.gz: 0ded9b23d8ca54f53b46639b3854b2f2cd5fd17521c417be045611be409f8140
3
+ metadata.gz: e77a65025792f307da8e9cbc3d152c805ac99693ec166aefb34daf33e03342a1
4
+ data.tar.gz: a60503f8eccdb64bce12bbc04190b9f56607d3ee55dcbfbfe9ac270162fdf97b
5
5
  SHA512:
6
- metadata.gz: ecb6f33683c67a269e43f24cf13ba1022b22fb37b2e0b01955706dff1cc19bba36b13d32d51cd05d75450ec952d5e9a2c88caa6b699faf7ec1fcd82dd1610faa
7
- data.tar.gz: de4343ac31ecd56c910f83ee6390996f88beabcaf3f4fd4e0dfbb3c0a3a79e4fda682f467b943f32436365ec0d572cb61cf8091d96c30b61253cefcbb57f493c
6
+ metadata.gz: edccfb30f83becb981042ee7c533fc4ad3754fac9fc6a9dd70d2b51fa7055abe1c09ee52fb814612c16dc0926fa72be53cfba563a76c9b00cef3bd202ec986e1
7
+ data.tar.gz: acde43696b1afc0f762d6b34a5a6a6fdde5e150a849f269e1b9fc8abf68c17dea4f6e6cbbb90146c10240cfa3d95765e31d18830c61c114e6b667624632c90c0
data/lib/client.rb CHANGED
@@ -21,6 +21,8 @@ class Client
21
21
 
22
22
  You have the ability to run any command that this system can run, and you can read the output of those commands.
23
23
 
24
+ However, any command which would ordinarily change the directory, such as cd, will not change the location of the directory in which you are running. To execute a command in a different directory, you must chain the cd command with the command you want to run, like so: `cd /path/to/directory && command`.
25
+
24
26
  The user is trying to accomplish a task using the terminal, but they are not sure how to do it.
25
27
  PROMPT
26
28
 
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
- puts 'Output:'
53
- puts output
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
- output = `#{message}`
102
+ commands = message.split("\n")
88
103
 
89
- puts 'Output:'
90
- puts output
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.3.0
4
+ version: 0.4.1
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-17 00:00:00.000000000 Z
11
+ date: 2024-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-openai