Skip to content

Commit

Permalink
Back to fuzzr for later
Browse files Browse the repository at this point in the history
    * README.rdoc:
    * lib/fuzz/version.rb:
    * rakelib/gem.rake:
  • Loading branch information
jwillemsen committed Apr 26, 2023
1 parent 87fb814 commit dc1e2da
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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].
2 changes: 1 addition & 1 deletion lib/fuzz/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions rakelib/gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit dc1e2da

Please sign in to comment.