use Gruntmaster::Data;
+use File::Temp qw/tempfile/;
+
use IO::Prompter [ -style => 'bold', '-stdio', '-verbatim' ];
-use File::Slurp qw/read_file/;
+use File::Slurp qw/read_file write_file/;
use JSON qw/encode_json/;
use Term::ANSIColor qw/RED RESET/;
use Getopt::Long qw/:config require_order/;
say $db->problem($id)->get_column($col)
}
+sub cmd_edit{
+ my ($id, $col) = @_;
+ my ($fh, $file) = tempfile 'gruntmaster-problem-editXXXX', TMPDIR => 1, UNLINK => 1;
+ write_file $fh, $db->problem($id)->get_column($col);
+ close $fh;
+ my $editor = $ENV{EDITOR} // 'editor';
+ system $editor, $file;
+ $db->problem($id)->update({$col => read_file $file});
+}
+
sub cmd_list{
local $, = "\n";
say map {$_->id} $db->problems->all
gruntmaster-problem show problem_id
gruntmaster-problem set [--file] problem_id key value
gruntmaster-problem get problem_id key
+ gruntmaster-problem edit problem_id key
=head1 DESCRIPTION
Get the value of the I<key> configuration option of problem I<id>
+=item B<edit> I<id> I<key>
+
+Opens an editor with the value of the I<key> configuration option. After the editor exits, the option is updated to the value of the file.
+
=item B<set> --file I<id> I<key> I<file>
Sets the I<key> configuration option of problem I<id> to the contents of the file I<file>.