Here is what I had to do: ``` sudo gem install install_specific gem install_specific --user-install https://github.com/citation-file-format/ruby-cff.git ``` and then make a local file `test.rb` ``` ruby require 'cff' begin CFF::File.validate!('CITATION.cff') end ``` ``` sh ruby test.rb ```