Skip to content

Commit 41a092a

Browse files
akofinkdLobatog
authored andcommitted
Bump to 0.2.0 (#20)
Signed-off-by: Andrew Kofink <[email protected]>
1 parent 8eeb6a5 commit 41a092a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

lib/openscap_parser/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module OpenscapParser
2-
VERSION = "0.1.2"
2+
VERSION = "0.2.0"
33
end

openscap_parser.gemspec

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44
require "openscap_parser/version"
55

66
Gem::Specification.new do |spec|
7-
spec.name = "openscap_parser"
7+
spec.name = 'openscap_parser'
88
spec.version = OpenscapParser::VERSION
9-
spec.authors = ["Daniel Lobato Garcia"]
10-
spec.email = ["[email protected]"]
9+
spec.authors = ['Daniel Lobato Garcia', 'Andrew Kofink']
10+
1111

12-
spec.summary = %q{Parse OpenSCAP reports}
13-
# spec.description = %q{TODO: Write a longer description or delete this line.}
14-
# spec.homepage = "TODO: Put your gem's website or public repo URL here."
15-
spec.license = "MIT"
12+
spec.summary = %q{Parse OpenSCAP content}
13+
spec.description = %q{This gem is a Ruby interface into SCAP content. It can parse SCAP datastream files (i.e. ssg-rhel7-ds.xml), scan result files output by oscap eval, and tailoring files.}
14+
spec.homepage = 'https://github.com/dLobatog/openscap_parser'
15+
spec.license = 'MIT'
1616

1717
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
1818
# to allow pushing to a single host or delete this section to allow pushing to any host.
@@ -32,8 +32,8 @@ Gem::Specification.new do |spec|
3232
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
3333
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
3434
end
35-
spec.bindir = "exe"
36-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
35+
spec.bindir = "bin"
36+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
3737
spec.require_paths = ["lib"]
3838

3939
spec.add_dependency "nokogiri", "~> 1.6"

0 commit comments

Comments
 (0)