Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add run task command #2231

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vscode/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export enum Command {
DebugTest = "rubyLsp.debugTest",
ShowSyntaxTree = "rubyLsp.showSyntaxTree",
DisplayAddons = "rubyLsp.displayAddons",
RunTask = "rubyLsp.runTask",
}

export interface RubyInterface {
Expand Down
24 changes: 24 additions & 0 deletions vscode/src/rubyLsp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,30 @@ export class RubyLsp {
Command.DebugTest,
this.testController.debugTest.bind(this.testController),
),
vscode.commands.registerCommand(
Command.RunTask,
async (command: string) => {
let workspace = this.currentActiveWorkspace();

if (!workspace) {
workspace = await this.showWorkspacePick();
}

if (!workspace) {
return;
}

workspace.outputChannel.show();
workspace.outputChannel.info(`Running task: ${command}`);
const { stdout, stderr } = await workspace.execute(command);

if (stderr.length > 0) {
workspace.outputChannel.error(stderr);
} else {
workspace.outputChannel.info(stdout);
}
},
),
);
}

Expand Down
9 changes: 8 additions & 1 deletion vscode/src/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ export class Workspace implements WorkspaceInterface {
public readonly ruby: Ruby;
public readonly createTestItems: (response: CodeLens[]) => void;
public readonly workspaceFolder: vscode.WorkspaceFolder;
public readonly outputChannel: WorkspaceChannel;
private readonly context: vscode.ExtensionContext;
private readonly telemetry: Telemetry;
private readonly outputChannel: WorkspaceChannel;
private readonly isMainWorkspace: boolean;
private needsRestart = false;
#rebaseInProgress = false;
Expand Down Expand Up @@ -263,6 +263,13 @@ export class Workspace implements WorkspaceInterface {
return this.#rebaseInProgress;
}

async execute(command: string) {
return asyncExec(command, {
env: this.ruby.env,
cwd: this.workspaceFolder.uri.fsPath,
});
}

private registerRestarts(context: vscode.ExtensionContext) {
this.createRestartWatcher(context, "Gemfile.lock");
this.createRestartWatcher(context, "gems.locked");
Expand Down
Loading