-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Cannot run installed "mono" gems (ie: fastlane) #40
Comments
seems like a bug in how fastlane's require works. |
This is a non-standard way to load gems for a binary in ruby: The standard way is to require the gem itself. |
I am not familiar with the gem require machinery. Created an issue over there to maybe get some helpful input. |
@KrauseFx responded:
Anyway, if it works with regular gem install shouldn't brew gem support it too? |
No it wont. On a normal gem install the binary location doesn't change. With brew-gem we symlink it and it's used for specifically for fastlane something like: #!/usr/bin/env ruby
require 'rubygems'
require 'fastlane'
.... |
Well, fastlane is not changing their code (they closed the issue), so I guess brew gem will not be compatible then. |
Installing works:
But executing the binary fails:
The text was updated successfully, but these errors were encountered: