Skip to content

Commit

Permalink
fix(ops): fix rspec require
Browse files Browse the repository at this point in the history
  • Loading branch information
jhult committed Nov 19, 2024
1 parent fe821b8 commit d2dee50
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .flox/env/manifest.lock
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
}
},
"hook": {
"on-activate": " # Install nodejs depedencies\n pnpm install\n"
"on-activate": " # Install nodejs depedencies\n pnpm install\n\n # Fix issue with rspec library not being available\n gem list | grep \"rspec (\" || gem install rspec\n"
},
"profile": {},
"options": {
Expand Down
3 changes: 3 additions & 0 deletions .flox/env/manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ openssl.systems = ["aarch64-linux", "x86_64-linux"]
on-activate = """
# Install nodejs depedencies
pnpm install
# Fix issue with rspec library not being available
gem list | grep "rspec (" || gem install rspec
"""

# Scripts defined in the `[profile]` section are *sourced* by *your shell* and
Expand Down
2 changes: 1 addition & 1 deletion ops/manage-processes-spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "rspec"
require "rspec/core"
require "socket"
require "timeout"
require_relative "manage-processes"
Expand Down

0 comments on commit d2dee50

Please sign in to comment.