-
Notifications
You must be signed in to change notification settings - Fork 22
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
asciidoctor-diagram #70
Comments
@marmalodak This is a bit of a invalid use case for
In which you are installing
The "self contained" part being the key words here. You can see what I mean by taking a look at the generated $ which asciidoctor
/usr/local/bin/asciidoctor #!/usr/local/opt/ruby/bin/ruby --disable-gems
ENV['GEM_HOME']="/usr/local/Cellar/gem-asciidoctor/2.0.15"
ENV['GEM_PATH']="/usr/local/Cellar/gem-asciidoctor/2.0.15"
require 'rubygems'
$:.unshift("/usr/local/Cellar/gem-asciidoctor/2.0.15/gems/asciidoctor-2.0.15/lib")
load "/usr/local/Cellar/gem-asciidoctor/2.0.15/gems/asciidoctor-2.0.15/bin/asciidoctor" The An unsupported work around for this is the following: $ brew gem install asciidoctor
$ export GEM_HOME=/usr/local/Cellar/gem-asciidoctor/2.0.15
$ export GEM_PATH=/usr/local/Cellar/gem-asciidoctor/2.0.15
/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/gem install asciidoctor-diagram But I think at this point, the use case for using |
Thank you for your thoughtful response. |
The following worked well:
However, using asciidoctor-diagram doesn't seem to work:
What can I do to make this work?
The text was updated successfully, but these errors were encountered: