-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependency on strscan #235
Comments
This problem was recently fixed. |
(kramdown-rfc uses REXML in a number of places, which is the pure-ruby XML library. |
Interesting. bundle does something that gem doesn't. Need to understand this some more. |
The sheer fact that REXML now declares its dependency on strscan seems to be the problem. This Gemfile works for me:
(The gem 'net-http-persistent' is no longer needed as kramdown-rfc now requires that; it no longer supports platforms old enough to not have gem 'net-http-persistent') A simple "gem install kramdown-rfc" also works as it doesn't invoke the bundler functionality. |
With author tools (using
And fails to install |
I'm trying to avoid pinning rexml in the gem, as that makes it hard to install in some other environments. So until the rexml people can get their act together, can you do the above addition to the Gemfile instead? |
(In authortools, you could also simply add build-essentials.) |
I had to install |
-- https://github.com/martinthomson/i-d-template/actions/runs/9547354420/job/26312195940#step:7:437
This seems to be a common pattern. A consequence of the "batteries included" design philosophy.
(I'm tempted to ask: Is there any way to just get kramdown-rfc without the full suite of secondary tools? That's not necessarily a good question, but it might help here.)
The text was updated successfully, but these errors were encountered: