From 5f590b3f0be02be3382e1035360fce1f94e8b7e9 Mon Sep 17 00:00:00 2001 From: VetheonGames Date: Tue, 19 Sep 2023 23:53:38 -0600 Subject: [PATCH] add some comments, upadte gemspec, up minor subver --- .gitignore | 1 + actionhash.gemspec | 3 +++ lib/actionhash.rb | 1 + lib/actionhash/version.rb | 2 +- 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b04a8c8..e8202ed 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ # rspec failure tracking .rspec_status +actionhash-1.0.0.gem diff --git a/actionhash.gemspec b/actionhash.gemspec index 07d1548..51af558 100644 --- a/actionhash.gemspec +++ b/actionhash.gemspec @@ -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 diff --git a/lib/actionhash.rb b/lib/actionhash.rb index 2fcd45a..e766fa0 100644 --- a/lib/actionhash.rb +++ b/lib/actionhash.rb @@ -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 diff --git a/lib/actionhash/version.rb b/lib/actionhash/version.rb index 163413b..ad15500 100644 --- a/lib/actionhash/version.rb +++ b/lib/actionhash/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Actionhash - VERSION = '1.0.0' + VERSION = '1.0.1' end