= Rfcbib RFCBib is a Ruby gem that search and fetch RFC standards. The standards scrape form https://www.rfc-editor.org/search/rfc_search.php == Installation Add this line to your application's Gemfile: [source, ruby] ---- gem 'rfcbib' ---- And then execute: $ bundle Or install it yourself as: $ gem install rfcbib == Usage === Search document [source,ruby] ---- item = RfcBib::RfcBibliography.search 'RFC 8341' => # # Return nil if document doesn't exist. RfcBib::RfcBibliography.search '1111' => nil ---- === Serialization [source,ruby] ---- item.to_xml =>" Network Configuration Access Control Model https://www.rfc-editor.org/info/rfc8341 2018 A. Bierman IETF M. Bjorklund IETF en " ---- == Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rfcbib. == License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).