From dc1e2da48fec667ee2091df0f90fd6dbe82a9af8 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Wed, 26 Apr 2023 08:04:22 +0200 Subject: [PATCH] Back to fuzzr for later * README.rdoc: * lib/fuzz/version.rb: * rakelib/gem.rake: --- README.rdoc | 8 ++++---- lib/fuzz/version.rb | 2 +- rakelib/gem.rake | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.rdoc b/README.rdoc index fae6a93..29a5a16 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,4 +1,4 @@ -{rdoc-image:https://badge.fury.io/rb/rite-fuzzr.svg}[https://rubygems.org/gems/rite-fuzzr] +{rdoc-image:https://badge.fury.io/rb/fuzzr.svg}[https://rubygems.org/gems/fuzzr] {rdoc-image:https://www.codefactor.io/repository/github/remedyit/fuzzr/badge}[https://www.codefactor.io/repository/github/remedyit/fuzzr] = fuzz @@ -17,12 +17,12 @@ This software is provided "as is" and without any express or implied warranties, == Installing fuzzr -fuzzr is distributed as a Ruby Gem. You can download and install fuzzr as a Ruby Gem from the common {Rubygems.org}[https://www.rubygems.org/gems/rite-fuzzr] repository by executing the following command: +fuzzr is distributed as a Ruby Gem. You can download and install fuzzr as a Ruby Gem from the common {Rubygems.org}[https://www.rubygems.org/gems/fuzzr] repository by executing the following command: - $ gem install rite-fuzzr + $ gem install fuzzr The RIDL Gem is a Ruby-only Gem without any dependencies. == Releasing new RIDL Ruby Gem -A new fuzzr ruby gem release can be made by incrementing the fuzzr version in link:lib/fuzz/version.rb and create a new release on {github}[https://github.com/RemedyIT/fuzzr/releases] matching the new version (for example v2.7.0). The github {Ruby Gem Release}[https://github.com/RemedyIT/fuzzr/actions?query=workflow%3A%22Ruby+Gem+Release%22] action will automatically create a new gem and push it to {Rubygems.org}[https://www.rubygems.org/gems/rite-fuzzr]. +A new fuzzr ruby gem release can be made by incrementing the fuzzr version in link:lib/fuzz/version.rb and create a new release on {github}[https://github.com/RemedyIT/fuzzr/releases] matching the new version (for example v2.7.0). The github {Ruby Gem Release}[https://github.com/RemedyIT/fuzzr/actions?query=workflow%3A%22Ruby+Gem+Release%22] action will automatically create a new gem and push it to {Rubygems.org}[https://www.rubygems.org/gems/fuzzr]. diff --git a/lib/fuzz/version.rb b/lib/fuzz/version.rb index 5c6bdb4..95593b6 100644 --- a/lib/fuzz/version.rb +++ b/lib/fuzz/version.rb @@ -11,7 +11,7 @@ module Fuzz FUZZ_VERSION_MAJOR = 0 FUZZ_VERSION_MINOR = 9 - FUZZ_VERSION_RELEASE = 10 + FUZZ_VERSION_RELEASE = 11 FUZZ_VERSION = "#{FUZZ_VERSION_MAJOR}.#{FUZZ_VERSION_MINOR}.#{FUZZ_VERSION_RELEASE}" FUZZ_COPYRIGHT = "Copyright (c) 2012-#{Time.now.year} Remedy IT Expertise BV, The Netherlands".freeze diff --git a/rakelib/gem.rake b/rakelib/gem.rake index 39507c4..72f57d9 100644 --- a/rakelib/gem.rake +++ b/rakelib/gem.rake @@ -48,9 +48,9 @@ end desc 'Build fuzzr gem' task :gem do - gemspec = Fuzz.define_spec('rite-fuzzr', Fuzz::FUZZ_VERSION) do |gem| + gemspec = Fuzz.define_spec('fuzzr', Fuzz::FUZZ_VERSION) do |gem| # gem is a Gem::Specification... see https://guides.rubygems.org/specification-reference/ for more options - gem.summary = %Q{rite-fuzzr} + gem.summary = %Q{fuzzr} gem.description = %Q{Fuzzer} gem.email = 'jwillemsen@remedy.nl' gem.homepage = "https://github.com/RemedyIT/fuzzr"