Skip to content

Commit

Permalink
Merge pull request #6 from evanleck/patch-1
Browse files Browse the repository at this point in the history
Corrected spelling of bundler state variable and added support for gems.rb.
  • Loading branch information
jsmecham authored Mar 26, 2020
2 parents 210a356 + aa88653 commit ef24056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Scripts/RuboCopProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class RuboCopProcess {
return Promise.resolve(this._isBundled);
}

if (!nova.workspace.contains("Gemfile")) {
this._sisBundled = false;
if (!(nova.workspace.contains("Gemfile") || nova.workspace.contains("gems.rb"))) {
this._isBundled = false;
return Promise.resolve(false);
}

Expand Down

0 comments on commit ef24056

Please sign in to comment.