You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
makeRubyGemsEnvironment requires to specify a rubyGems parameter with the entire pinned dependency tree. This is a huge headache as one has to go through each dependency in RubyGems and get its sha256. Aditionally, one still has to get a Gemfile.lock just to know the dependency tree for a set of direct dependencies.
Let's do what we do with Python:
Add a makeRubyLock (like makePythonLock) that automatically generates a lock file.
Make makeRubyGemsEnvironment receive such lock to create the environment.
The text was updated successfully, but these errors were encountered:
makeRubyGemsEnvironment
requires to specify arubyGems
parameter with the entire pinned dependency tree. This is a huge headache as one has to go through each dependency in RubyGems and get its sha256. Aditionally, one still has to get a Gemfile.lock just to know the dependency tree for a set of direct dependencies.Let's do what we do with Python:
makeRubyLock
(likemakePythonLock
) that automatically generates a lock file.makeRubyGemsEnvironment
receive such lock to create the environment.The text was updated successfully, but these errors were encountered: