Florian Rosenberg

Results 4 issues of Florian Rosenberg

Thanks for the great site. I fixed the formatting on some link in case that is helpful.

Even though everything builds fine, there are a lot of WARNING message that should be removed. This is because of open-ended dependencies. root@boot2docker:/toaster# gem build toaster.gemspec WARNING: open-ended dependency on...

enhancement

I have the following sample program: ``` require 'rxsd' xsd_uri = "http://nvd.nist.gov/schema/nvd-cve-feed_2.0.xsd" xml_uri = "http://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-modified.xml" schema = RXSD::Parser.parse_xsd :uri => xsd_uri puts "=======Objects=======" data = RXSD::Parser.parse_xml :uri => xml_uri objs...

I run the following sample program (pretty much adapted from the wiki) and use the National Vulnerability Database XML schema and sample file as an input. This is the sample...