soar_auditor_api 0.0.2 → 0.0.3

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: 86bd2491171a982f60f65da6895a59d063339d35
4
- data.tar.gz: b9c2e332fa486de9d2426d62c82c0f3cec123c2d
3
+ metadata.gz: 92ed8f743dcb9a607c90b5e7c2bba322b28945db
4
+ data.tar.gz: 5c3cf3f3a09f8e71f524ec2d1c51633b42d7d2f8
5
5
  SHA512:
6
- metadata.gz: 260db2993a63524491abf76e5819ab0e58fbcd16aea12835acf06a9e90c761072aad52256274fe6ec01330d8d12a28636fd56b7e2e3257882f43c1c3017aee2d
7
- data.tar.gz: 01d1e3b6d87b79e1146066c159a5db24b8cd0082b5babe411eb59a222d8852620c4231c8a3dbd8bc7cd312c6ebcc39344fdd5cfaaf957d62c37d8d35ed06fdc5
6
+ metadata.gz: b938d7bee843eb1ae9c89f775eb5ec841d42eb5655e95a4a653d48f2dbaebe90466e41eb696e8743ac031f3716843d9642e0419c36c92b406188bb0e843f6d2d
7
+ data.tar.gz: 1b443a46604226c17a9445b36c6444c53130b7d1f71e70934b4b1bafcebbc2a00c58afb7cee85a7518fcaa1e551731461df37d61ce78c475becfeb2de090fd14
data/README.md CHANGED
@@ -30,12 +30,12 @@ Behavioural driven testing can be performed:
30
30
 
31
31
  ## Usage
32
32
 
33
- ### Auditors that extend from the SoarAuditorAPI
33
+ ### Auditors that extend from the AuditorAPI
34
34
 
35
- Extend from the SoarAuditorAPI as follow
35
+ Extend from the AuditorAPI as follow
36
36
 
37
37
  ``` ruby
38
- class MyAuditor < SoarAuditorApi::SoarAuditorAPI
38
+ class MyAuditor < SoarAuditorApi::AuditorAPI
39
39
  end
40
40
  ```
41
41
 
@@ -63,9 +63,9 @@ end
63
63
  ```
64
64
 
65
65
 
66
- ### Auditing Providers that utilize the SoarAuditorAPI as clients
66
+ ### Auditing Providers that utilize the AuditorAPI as clients
67
67
 
68
- Instantiate an auditor that extends the SoarAuditorAPI:
68
+ Instantiate an auditor that extends the AuditorAPI:
69
69
  ```ruby
70
70
  @iut = SanityAuditor.new
71
71
  ```
@@ -102,7 +102,7 @@ some_debug_object = 123
102
102
  require 'soar_auditor_api'
103
103
  require 'byebug'
104
104
 
105
- class SanityAuditor < SoarAuditorApi::SoarAuditorAPI
105
+ class SanityAuditor < SoarAuditorApi::AuditorAPI
106
106
  def configuration_is_valid(configuration)
107
107
  return configuration.include?("preprefix")
108
108
  end
@@ -1,5 +1,5 @@
1
1
  module SoarAuditorApi
2
- class SoarAuditorAPI
2
+ class AuditorAPI
3
3
  DEBUG_PREFIX = "debug:" unless defined? DEBUG_PREFIX; DEBUG_PREFIX.freeze
4
4
  INFO_PREFIX = "info:" unless defined? INFO_PREFIX; INFO_PREFIX.freeze
5
5
  WARN_PREFIX = "warn:" unless defined? WARN_PREFIX; WARN_PREFIX.freeze
@@ -1,3 +1,3 @@
1
1
  module SoarAuditorApi
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/sanity/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'byebug'
4
- gem 'soar_auditor_api', "~> 0.0.2"
4
+ gem 'soar_auditor_api', "~> 0.0.3"
data/sanity/sanity.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'soar_auditor_api'
2
2
  require 'byebug'
3
3
 
4
- class SanityAuditor < SoarAuditorApi::SoarAuditorAPI
4
+ class SanityAuditor < SoarAuditorApi::AuditorAPI
5
5
  def configuration_is_valid(configuration)
6
6
  return configuration.include?("preprefix")
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soar_auditor_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Barney de Villiers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-20 00:00:00.000000000 Z
11
+ date: 2016-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler