Skip to content

Commit

Permalink
Version changes
Browse files Browse the repository at this point in the history
    * lib/fuzz.rb -> lib/fuzz/version.rb:
      Moved.

    * rakelib/gem.rake:
  • Loading branch information
jwillemsen committed Feb 27, 2020
1 parent 31a66d9 commit 18b6942
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions lib/fuzz.rb → lib/fuzz/version.rb
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# encoding: utf-8
# -------------------------------------------------------------------
# fuzz.rb - TAOX11 fuzz checker
# version.rb - TAOX11 fuzz checker
#
# Author: Martin Corino
#
# Copyright (c) Remedy IT Expertise BV
# -------------------------------------------------------------------

module Fuzz
VERSION = '0.9.6' unless defined? VERSION
end

require 'fuzz/fuzz'
FUZZ_VERSION_MAJOR = 0.freeze
FUZZ_VERSION_MINOR = 9.freeze
FUZZ_VERSION_RELEASE = 6.freeze
FUZZ_VERSION = "#{FUZZ_VERSION_MAJOR}.#{FUZZ_VERSION_MINOR}.#{FUZZ_VERSION_RELEASE}"

end
4 changes: 2 additions & 2 deletions rakelib/gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rescue LoadError
require 'rubygems/package'
end

require './lib/fuzz'
require './lib/fuzz/version'

module Fuzz

Expand Down Expand Up @@ -48,7 +48,7 @@ end

desc 'Build fuzzr gem'
task :gem do
gemspec = Fuzz.define_spec('fuzzr', 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{fuzzr}
gem.description = %Q{Fuzzer}
Expand Down

0 comments on commit 18b6942

Please sign in to comment.