asciidoc설치 후 .adoc문서를 .pdf로 변환하는 성공경험을 목적으로 하는 tutorial 설치환경 : centOS-7.3-64 1. rvm설치 curl -sSL https://get.rvm.io | bash -s stable (public key 관련 오류 발생 시 하단 '오류처리' 참고) source /etc/profile.d/rvm.sh rvm reload rvm list known 2. ruby 설치 rvm install ruby-2.4 rvm use 2.4 which ruby 3. asciidoctor 설치 gem install asciidoctor 4. coderay 설치 gem install coderay pygments.rb 4. asciidoctor-pdf 설치 gem insta..