# image-inspector-client-ruby **Repository Path**: mirrors_openshift/image-inspector-client-ruby ## Basic Information - **Project Name**: image-inspector-client-ruby - **Description**: a ruby client for image-inspector: https://github.com/simon3z/image-inspector - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-22 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # image-inspector-client a ruby client for [image-inspector](https://github.com/openshift/image-inspector) ## installing gem gem install image-inspector-client ## usage ```ruby require 'image-inspector-client' ImageInspectorClient::Client.new('http://localhost:8080', 'v1') .fetch_metadata .ContainerConfig .Cmd Get OpenSCAP ARF as raw xml: ImageInspectorClient::Client.new('http://localhost:8080', 'v1') .fetch_oscap_arf ``` ## building from source fetch dependencies: ``` bundle install ``` tests: ``` rake test ``` tests and style check: ``` rake test rubocop ``` build and install into $GEM_HOME: ``` rake install ```