add some comments, upadte gemspec, up minor subver

This commit is contained in:
VetheonGames 2023-09-19 23:53:38 -06:00
parent d2257d72cc
commit 5f590b3f0b
4 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@
# rspec failure tracking
.rspec_status
actionhash-1.0.0.gem

View File

@ -31,4 +31,7 @@ Gem::Specification.new do |spec|
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.funding_uri = 'https://www.paypal.com/donate/?hosted_button_id=YF5XS7ZXQ6F8A'
spec.post_install_message = 'If you find this gem useful, consider supporting its development: https://www.paypal.com/donate/?hosted_button_id=YF5XS7ZXQ6F8A'
end

View File

@ -3,6 +3,7 @@
require_relative 'actionhash/version'
require 'securerandom'
# This is the main module for the ActionHash Gem
module ActionHash
class Error < StandardError; end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Actionhash
VERSION = '1.0.0'
VERSION = '1.0.1'
end