arp_scan 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 21449e6fd38960eb78e357a1db2e75022ec3a0cd
4
- data.tar.gz: 2b23e39343027d0366e1caa578f68c31722f8542
3
+ metadata.gz: 3da5c794b3e060ebcdf1e64e9b4b4e3c2a962168
4
+ data.tar.gz: 8cb575fb34d6afed2e5a385fd0a7dc771fe0aedc
5
5
  SHA512:
6
- metadata.gz: 819fbd9535f90d617d3bbe3448aea31e50fe155cafb44e25fd8c03d2b6332e14b5b42a6a5e35a9fbca3a112938eb181e07c3777fd1e02097d47b9bafc74ef10f
7
- data.tar.gz: cc4ad8109f6426074b01f1dddd5b5affb7bc9439658517594331b731b091534aacba601b7cd4164e2361d83cbb0278a19648788c437178445700b7efe3129f95
6
+ metadata.gz: 157feb33e07f5b02ec025a23285165d7a80f42be28302e03ea2080e7c788e5682578ece77efa4ceb22449d29b2bc94f164e9ab5f32bf3f6176919ec6c0867fab
7
+ data.tar.gz: de4f4b8e85030c3da59dc48f5b24ea6f59c301ec9630ae5ba563a7516e0a55f70ff59a7a36dd7610417068cfea8be7cca6c4828e0e0f190a6cabf38f6c82a760
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+
3
4
  # Specify your gem's dependencies in arp_scan.gemspec
4
5
  gemspec
data/README.md CHANGED
@@ -24,7 +24,7 @@ should probably go with the `/etc/sudoers` method.
24
24
 
25
25
  ## Notes
26
26
 
27
- This code is untested and will hopefully be refactored soon.
27
+ This code is partially tested.
28
28
 
29
29
 
30
30
  ## Installation
data/arp_scan.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Michael Rodrigues"]
10
10
  spec.email = ["mikebrodrigues@gmail.com"]
11
11
  spec.summary = %q{A ruby wrapper for the arp-scan utility.}
12
- spec.description = %q{Easily use the arp_scan utility from within your ruby programs.}
12
+ spec.description = %q{Easily use the arp-scan utility from within your ruby programs.}
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
15
 
@@ -1,3 +1,3 @@
1
1
  module ARPScan
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1,4 +1,5 @@
1
1
  require '../lib/arp_scan'
2
+ require_relative './spec_helper.rb'
2
3
 
3
4
  RSpec.describe ARPScan do
4
5
  report = ARPScan('-l')
@@ -1,4 +1,5 @@
1
1
  require '../lib/arp_scan'
2
+ require_relative './spec_helper'
2
3
 
3
4
  RSpec.describe ARPScan::ARPScanner do
4
5
 
data/spec/host_spec.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require '../lib/arp_scan'
2
+ require_relative './spec_helper'
2
3
 
3
4
  RSpec.describe ARPScan::Host do
4
5
 
@@ -1,4 +1,5 @@
1
1
  require '../lib/arp_scan'
2
+ require_relative './spec_helper'
2
3
 
3
4
  RSpec.describe ARPScan::ScanReport do
4
5
 
@@ -1,4 +1,5 @@
1
1
  require '../lib/arp_scan'
2
+ require_relative './spec_helper'
2
3
 
3
4
  RSpec.describe ARPScan::ScanResultProcessor do
4
5
 
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arp_scan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rodrigues
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-07 00:00:00.000000000 Z
11
+ date: 2014-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: Easily use the arp_scan utility from within your ruby programs.
41
+ description: Easily use the arp-scan utility from within your ruby programs.
42
42
  email:
43
43
  - mikebrodrigues@gmail.com
44
44
  executables: []
@@ -60,6 +60,7 @@ files:
60
60
  - spec/host_spec.rb
61
61
  - spec/scan_report_spec.rb
62
62
  - spec/scan_result_processor_spec.rb
63
+ - spec/spec_helper.rb
63
64
  - spec/test_output.txt
64
65
  homepage: ''
65
66
  licenses:
@@ -91,4 +92,5 @@ test_files:
91
92
  - spec/host_spec.rb
92
93
  - spec/scan_report_spec.rb
93
94
  - spec/scan_result_processor_spec.rb
95
+ - spec/spec_helper.rb
94
96
  - spec/test_output.txt