Skip to content

Commit

Permalink
Allow individual version managers to trigger manual Ruby selection
Browse files Browse the repository at this point in the history
  • Loading branch information
vinistock committed Nov 6, 2024
1 parent 65c9d0c commit b9e537c
Show file tree
Hide file tree
Showing 13 changed files with 122 additions and 39 deletions.
68 changes: 57 additions & 11 deletions vscode/src/ruby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,12 @@ export class Ruby implements RubyInterface {
if (workspaceRubyPath) {
// If a workspace specific Ruby path is configured, then we use that to activate the environment
await this.runActivation(
new None(this.workspaceFolder, this.outputChannel, workspaceRubyPath),
new None(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
workspaceRubyPath,
),
);
} else {
// If the version manager is auto, discover the actual manager before trying to activate anything
Expand All @@ -139,7 +144,12 @@ export class Ruby implements RubyInterface {

if (globalRubyPath) {
await this.runActivation(
new None(this.workspaceFolder, this.outputChannel, globalRubyPath),
new None(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
globalRubyPath,
),
);
} else {
this._error = true;
Expand Down Expand Up @@ -266,47 +276,83 @@ export class Ruby implements RubyInterface {
switch (this.versionManager.identifier) {
case ManagerIdentifier.Asdf:
await this.runActivation(
new Asdf(this.workspaceFolder, this.outputChannel),
new Asdf(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.Chruby:
await this.runActivation(
new Chruby(this.workspaceFolder, this.outputChannel),
new Chruby(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.Rbenv:
await this.runActivation(
new Rbenv(this.workspaceFolder, this.outputChannel),
new Rbenv(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.Rvm:
await this.runActivation(
new Rvm(this.workspaceFolder, this.outputChannel),
new Rvm(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.Mise:
await this.runActivation(
new Mise(this.workspaceFolder, this.outputChannel),
new Mise(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.RubyInstaller:
await this.runActivation(
new RubyInstaller(this.workspaceFolder, this.outputChannel),
new RubyInstaller(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.Custom:
await this.runActivation(
new Custom(this.workspaceFolder, this.outputChannel),
new Custom(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
case ManagerIdentifier.None:
await this.runActivation(
new None(this.workspaceFolder, this.outputChannel),
new None(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
default:
await this.runActivation(
new Shadowenv(this.workspaceFolder, this.outputChannel),
new Shadowenv(
this.workspaceFolder,
this.outputChannel,
this.manuallySelectRuby.bind(this),
),
);
break;
}
Expand Down
3 changes: 2 additions & 1 deletion vscode/src/ruby/chruby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ export class Chruby extends VersionManager {
constructor(
workspaceFolder: vscode.WorkspaceFolder,
outputChannel: WorkspaceChannel,
manuallySelectRuby: () => Promise<void>,
) {
super(workspaceFolder, outputChannel);
super(workspaceFolder, outputChannel, manuallySelectRuby);

const configuredRubies = vscode.workspace
.getConfiguration("rubyLsp")
Expand Down
3 changes: 2 additions & 1 deletion vscode/src/ruby/none.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ export class None extends VersionManager {
constructor(
workspaceFolder: vscode.WorkspaceFolder,
outputChannel: WorkspaceChannel,
manuallySelectRuby: () => Promise<void>,
rubyPath?: string,
) {
super(workspaceFolder, outputChannel);
super(workspaceFolder, outputChannel, manuallySelectRuby);
this.rubyPath = rubyPath ?? "ruby";
}

Expand Down
3 changes: 3 additions & 0 deletions vscode/src/ruby/versionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,18 @@ export abstract class VersionManager {
protected readonly outputChannel: WorkspaceChannel;
protected readonly workspaceFolder: vscode.WorkspaceFolder;
protected readonly bundleUri: vscode.Uri;
protected readonly manuallySelectRuby: () => Promise<void>;

private readonly customBundleGemfile?: string;

constructor(
workspaceFolder: vscode.WorkspaceFolder,
outputChannel: WorkspaceChannel,
manuallySelectRuby: () => Promise<void>,
) {
this.workspaceFolder = workspaceFolder;
this.outputChannel = outputChannel;
this.manuallySelectRuby = manuallySelectRuby;
const customBundleGemfile: string = vscode.workspace
.getConfiguration("rubyLsp")
.get("bundleGemfile")!;
Expand Down
4 changes: 2 additions & 2 deletions vscode/src/test/suite/ruby/asdf.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ suite("Asdf", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const asdf = new Asdf(workspaceFolder, outputChannel);
const asdf = new Asdf(workspaceFolder, outputChannel, async () => {});
const envStub = {
env: { ANY: "true" },
yjit: true,
Expand Down Expand Up @@ -75,7 +75,7 @@ suite("Asdf", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const asdf = new Asdf(workspaceFolder, outputChannel);
const asdf = new Asdf(workspaceFolder, outputChannel, async () => {});
const envStub = {
env: { ANY: "true" },
yjit: true,
Expand Down
18 changes: 9 additions & 9 deletions vscode/src/test/suite/ruby/chruby.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ suite("Chruby", () => {
outputChannel = new WorkspaceChannel("fake", LOG_CHANNEL);
});

after(() => {
afterEach(() => {
fs.rmSync(rootPath, { recursive: true, force: true });
});

test("Finds Ruby when .ruby-version is inside workspace", async () => {
fs.writeFileSync(path.join(workspacePath, ".ruby-version"), RUBY_VERSION);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [
vscode.Uri.file(path.join(rootPath, "opt", "rubies")),
];
Expand All @@ -90,7 +90,7 @@ suite("Chruby", () => {
test("Finds Ruby when .ruby-version is inside on parent directories", async () => {
fs.writeFileSync(path.join(rootPath, ".ruby-version"), RUBY_VERSION);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [
vscode.Uri.file(path.join(rootPath, "opt", "rubies")),
];
Expand Down Expand Up @@ -126,7 +126,7 @@ suite("Chruby", () => {

fs.writeFileSync(path.join(rootPath, ".ruby-version"), RUBY_VERSION);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [
vscode.Uri.file(path.join(rootPath, "opt", "rubies")),
];
Expand Down Expand Up @@ -171,7 +171,7 @@ suite("Chruby", () => {
`${RUBY_VERSION}-rc1`,
);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [
vscode.Uri.file(path.join(rootPath, "opt", "rubies")),
];
Expand Down Expand Up @@ -201,7 +201,7 @@ suite("Chruby", () => {

fs.writeFileSync(path.join(rootPath, ".ruby-version"), RUBY_VERSION);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [vscode.Uri.file(rubyHome)];

const { env, version, yjit } = await chruby.activate();
Expand All @@ -223,7 +223,7 @@ suite("Chruby", () => {
: "",
} as any);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
configStub.restore();

const { env, version, yjit } = await chruby.activate();
Expand All @@ -247,7 +247,7 @@ suite("Chruby", () => {
`${major}.${minor}`,
);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [
vscode.Uri.file(path.join(rootPath, "opt", "rubies")),
];
Expand Down Expand Up @@ -278,7 +278,7 @@ suite("Chruby", () => {
`${major}.${minor}`,
);

const chruby = new Chruby(workspaceFolder, outputChannel);
const chruby = new Chruby(workspaceFolder, outputChannel, async () => {});
chruby.rubyInstallationUris = [
vscode.Uri.file(path.join(rootPath, ".rubies")),
vscode.Uri.file(path.join(rootPath, "opt", "rubies")),
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/test/suite/ruby/custom.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ suite("Custom", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const custom = new Custom(workspaceFolder, outputChannel);
const custom = new Custom(workspaceFolder, outputChannel, async () => {});

const envStub = {
env: { ANY: "true" },
Expand Down
4 changes: 2 additions & 2 deletions vscode/src/test/suite/ruby/mise.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ suite("Mise", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const mise = new Mise(workspaceFolder, outputChannel);
const mise = new Mise(workspaceFolder, outputChannel, async () => {});

const envStub = {
env: { ANY: "true" },
Expand Down Expand Up @@ -82,7 +82,7 @@ suite("Mise", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const mise = new Mise(workspaceFolder, outputChannel);
const mise = new Mise(workspaceFolder, outputChannel, async () => {});

const envStub = {
env: { ANY: "true" },
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/test/suite/ruby/none.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ suite("None", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const none = new None(workspaceFolder, outputChannel);
const none = new None(workspaceFolder, outputChannel, async () => {});

const envStub = {
env: { ANY: "true" },
Expand Down
4 changes: 2 additions & 2 deletions vscode/src/test/suite/ruby/rbenv.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ suite("Rbenv", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const rbenv = new Rbenv(workspaceFolder, outputChannel);
const rbenv = new Rbenv(workspaceFolder, outputChannel, async () => {});

const envStub = {
env: { ANY: "true" },
Expand Down Expand Up @@ -68,7 +68,7 @@ suite("Rbenv", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const rbenv = new Rbenv(workspaceFolder, outputChannel);
const rbenv = new Rbenv(workspaceFolder, outputChannel, async () => {});

const execStub = sinon.stub(common, "asyncExec").resolves({
stdout: "",
Expand Down
18 changes: 15 additions & 3 deletions vscode/src/test/suite/ruby/rubyInstaller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ suite("RubyInstaller", () => {

fs.writeFileSync(path.join(workspacePath, ".ruby-version"), RUBY_VERSION);

const windows = new RubyInstaller(workspaceFolder, outputChannel);
const windows = new RubyInstaller(
workspaceFolder,
outputChannel,
async () => {},
);
const { env, version, yjit } = await windows.activate();

assert.match(env.GEM_PATH!, /ruby\/3\.3\.0/);
Expand Down Expand Up @@ -90,7 +94,11 @@ suite("RubyInstaller", () => {

fs.writeFileSync(path.join(workspacePath, ".ruby-version"), RUBY_VERSION);

const windows = new RubyInstaller(workspaceFolder, outputChannel);
const windows = new RubyInstaller(
workspaceFolder,
outputChannel,
async () => {},
);
const { env, version, yjit } = await windows.activate();

assert.match(env.GEM_PATH!, /ruby\/3\.3\.0/);
Expand Down Expand Up @@ -120,7 +128,11 @@ suite("RubyInstaller", () => {

fs.writeFileSync(path.join(workspacePath, ".ruby-version"), RUBY_VERSION);

const windows = new RubyInstaller(workspaceFolder, outputChannel);
const windows = new RubyInstaller(
workspaceFolder,
outputChannel,
async () => {},
);
const result = ["/fake/dir", "/other/fake/dir", true, RUBY_VERSION].join(
ACTIVATION_SEPARATOR,
);
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/test/suite/ruby/rvm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ suite("RVM", () => {
index: 0,
};
const outputChannel = new WorkspaceChannel("fake", common.LOG_CHANNEL);
const rvm = new Rvm(workspaceFolder, outputChannel);
const rvm = new Rvm(workspaceFolder, outputChannel, async () => {});

const installationPathStub = sinon
.stub(rvm, "findRvmInstallation")
Expand Down
Loading

0 comments on commit b9e537c

Please sign in to comment.