From a1d74e6ff42fe354b625ae7f62976241a129d14f Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sun, 2 Oct 2016 09:50:48 -0400
Subject: [PATCH] made a few more changes to migrate over to aprs gem.
---
aprs.gemspec | 1 +
features/apex.feature | 18 ------------------
features/aprs.feature | 6 ++++++
lib/aprs.rb | 2 --
4 files changed, 7 insertions(+), 20 deletions(-)
delete mode 100644 features/apex.feature
create mode 100644 features/aprs.feature
diff --git a/aprs.gemspec b/aprs.gemspec
index caa177a..dbf1c4a 100644
--- a/aprs.gemspec
+++ b/aprs.gemspec
@@ -30,6 +30,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'abstraction', '~> 0.0.4'
spec.add_dependency 'json', '~> 1.8'
+ spec.add_dependency 'kiss-tnc', '~> 1.0'
spec.add_development_dependency 'bundler', '~> 1.13'
spec.add_development_dependency 'rake', '~> 11.3'
spec.add_development_dependency 'rdoc', '~> 4.2'
diff --git a/features/apex.feature b/features/apex.feature
deleted file mode 100644
index 6b0e99e..0000000
--- a/features/apex.feature
+++ /dev/null
@@ -1,18 +0,0 @@
-Feature: My bootstrapped app kinda works
- In order to get going on coding my awesome app
- I want to have aruba and cucumber setup
- So I don't have to do it myself
-
- Scenario: App just runs
- When I get help for "apex"
- Then the exit status should be 0
- And the banner should be present
- And the banner should document that this app takes options
- And the following options should be documented:
- | --version |
- | --[no]-switch |
- | --flag |
- And the banner should document that this app's arguments are:
- | needed | which is required |
- | maybe | which is optional |
- And there should be a one line summary of what the app does
diff --git a/features/aprs.feature b/features/aprs.feature
new file mode 100644
index 0000000..8b2b7cc
--- /dev/null
+++ b/features/aprs.feature
@@ -0,0 +1,6 @@
+Feature: My bootstrapped app kinda works
+ In order to get going on coding my awesome app
+ I want to have aruba and cucumber setup
+ So I don't have to do it myself
+
+ Scenario: App just runs
diff --git a/lib/aprs.rb b/lib/aprs.rb
index 4278b2b..6a29d13 100644
--- a/lib/aprs.rb
+++ b/lib/aprs.rb
@@ -1,5 +1,3 @@
-require 'colorize'
-require 'kiss/kiss_serial'
require 'aprs/aprs_kiss'
module Aprs
--
GitLab