OpenscapParser
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file lib/openscap_parser
. To experiment with that code, run bin/console
for an interactive prompt.
Installation
Add this line to your application's Gemfile:
gem 'openscap_parser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install openscap_parser
Usage
ARF/XCCDF report goes IN - Ruby hash goes OUT
parser = OpenscapParser::Base.new(File.read('rhel7-xccdf_org.ssgproject.content_profile_standard.xml'))
parser.host
parser.start_time
parser.end_time
parser.score
parser.profiles
parser.rules
parser.rule_results
Fetching SCAP Security Guide Content
This gem includes a rake task to sync content from the ComplianceAsCode project. The following examples show how to download and exract datastream files from the released versions:
rake ssg:sync DATASTREAMS=latest:fedora
rake ssg:sync DATASTREAMS=v0.1.45:fedora,v0.1.45:firefox
rake ssg:sync_rhel
An SSG version will be downloaded only once, even if it is specified multiple times for multiple datastreams.
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
With Docker
A Dockerfile is provided to allow a containerized development environment:
docker build . -t openscap_parser # build the container image
docker run -itv $PWD:/app:z openscap_parser rake # run tests
docker run -itv $PWD:/app:z openscap_parser pry --gem # console
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/elobato/openscap_parser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the OpenscapParser project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.