From c1b15d86b14d79c508b8075025fe329bc68449fe Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Tue, 12 Sep 2023 20:22:09 -0400
Subject: [PATCH] Fixed bindir in gemspec and updated my email
---
CHANGELOG.md | 2 ++
apex-aprs.gemspec | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 420388e..7e9179f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@
* Added testing with significant coverage
* Fixed IGate so it wont get stuck in an infinite loop when receiving data faster than it can process
* Added EMPTY_PATH constant to represent a path with 0 hops.
+* Fixed bad bindir in gemspec.
+* Updated project owner's email address.
## 1.0.4
diff --git a/apex-aprs.gemspec b/apex-aprs.gemspec
index 9b69ce3..8aa8798 100644
--- a/apex-aprs.gemspec
+++ b/apex-aprs.gemspec
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
spec.version = Apex::VERSION
spec.licenses = ['Apache-2.0']
spec.authors = ['Jeffrey Phillips Freeman']
- spec.email = ['jeffrey.freeman@syncleus.com']
+ spec.email = ['the@jeffreyfreeman.me']
spec.summary = %q{Library for APRS, Automatic Packet Reporting System, communications including the next-generation APEX extensions. Includes an APRS-IS client.}
spec.description = %q{Ruby library for APRS, Automatic Packet Reporting System, communications including the next-generation APEX extensions. Includes an APRS-IS client.}
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
- spec.bindir = 'exe'
+ spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
--
GitLab