diff --git a/aprs.gemspec b/aprs.gemspec index caa177a493721a0bf67f03c716aba3f73accade2..dbf1c4a837699e237323b1e66188f3f9cc627db2 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 6b0e99eb03e50c9e1b25e95e70c373ef0d7ffb0c..0000000000000000000000000000000000000000 --- 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 0000000000000000000000000000000000000000..8b2b7cc2b9246fca6777d42a58a25d7526d808e5 --- /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 4278b2b7329195a04c634fff9be315c3e30dd129..6a29d132faa2d18c7c0f241c75cec563be2f8e8f 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