# frozen_string_literal: true require_relative 'lib/actionhash/version' Gem::Specification.new do |spec| spec.name = 'actionhash' spec.version = Actionhash::VERSION spec.authors = ['PixelRidge Softworks'] spec.email = ['ceo@pixelridgesoftworks.com'] spec.summary = 'A custom hash mechanism for action tracking and validation.' spec.description = 'ActionHash provides a way to create and validate custom hashes for tracking user actions in a secure and efficient manner.' spec.homepage = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/ActionHash' spec.license = 'PixelRidge-BEGPULSE' spec.required_ruby_version = '>= 3.2.2' spec.metadata['allowed_push_host'] = 'https://git.pixelridgesoftworks.com/api/packages/PixelRidge-Softworks/rubygems' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/ActionHash' spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor]) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] # Uncomment to register a new dependency of your gem spec.add_dependency "dotenv", "~> 2.7" end