soar_analytics 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 46f9347898248334f05db891b72b6820a9349d7d
4
+ data.tar.gz: 2c2d11b807ac82febe9dc5044c072bdd119d9380
5
+ SHA512:
6
+ metadata.gz: 225bda70028fd283fd3263c7265f7e5a5e850aea129b2466188f4bcaa1e70182c7102f7802517ceb7762a1d269f0971e04e5c34e2ab762b3f845774570a8f15e
7
+ data.tar.gz: 2a22e633a0b1c686e54f5f5e59dc1843061899ae3253fe975f24fbb076420e1ce197ec0afb4df3e0b28595b2689341ecd2efef7ae9f2258a01f658e969f8a597
data/.gitignore ADDED
@@ -0,0 +1,52 @@
1
+ .byebug_history
2
+ *tgz
3
+ left
4
+ test_tfa.sh
5
+ test_production.sh
6
+ iut-list
7
+ juddi-distro-*
8
+ *.swo
9
+ *.zip
10
+ *.tar.gz
11
+ *.swp
12
+ *.gem
13
+ *.rbc
14
+ Gemfile.lock
15
+ /.config
16
+ /coverage/
17
+ /InstalledFiles
18
+ /pkg/
19
+ /spec/reports/
20
+ /spec/examples.txt
21
+ /test/tmp/
22
+ /test/version_tmp/
23
+ /tmp/
24
+ .DS_Store
25
+ logfile
26
+
27
+ ## Specific to RubyMotion:
28
+ .dat*
29
+ .repl_history
30
+ build/
31
+
32
+ ## Documentation cache and generated files:
33
+ /.yardoc/
34
+ /_yardoc/
35
+ /doc/
36
+ /rdoc/
37
+
38
+ ## Environment normalisation:
39
+ /.bundle/
40
+ /vendor/bundle
41
+ /lib/bundler/man/
42
+
43
+ # for a library or gem, you might want to ignore these files since the code is
44
+ # intended to run in multiple environments; otherwise, check them in:
45
+ # Gemfile.lock
46
+ # .ruby-version
47
+ # .ruby-gemset
48
+
49
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
+ .rvmrc
51
+
52
+ soar_sc.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ soar_analytics
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.3
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in soar_analytics.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Barney de Villiers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # SoarAnalytics
2
+
3
+ This gem provides the analytics helpers that can be plugged into the SOAR architecture. The output is in the form of key value pairs that can easily be analyzed using queries on your auditing event logs.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'soar_analytics'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install soar_analytics
20
+
21
+ ## Testing
22
+
23
+ Behavioural driven testing can be performed by testing so:
24
+
25
+ $ bundle exec rspec -cfd spec/*
26
+
27
+ ## Usage
28
+
29
+ Initialize and configure the analytics with the auditing provider so:
30
+
31
+ ```ruby
32
+ SoarAnalytics.auditing = myauditing
33
+ ```
34
+
35
+ ## Reporter
36
+
37
+ The Reporter class is the most basic reporting which simply reports a value in a key value pair using the specified auditing level. Not very useful for most applcations but forms the basis of other specialized reporters in this gem. The flow identifier parameter is optional.
38
+
39
+ ```ruby
40
+ flow_id = SoarFlow::ID::generate_flow_id
41
+ reporter = SoarAnalytics::Reporter.new('my_reporter')
42
+ value = 123
43
+ reporter.report(value,:warn,flow_id)
44
+ ```
45
+
46
+ ## ThresholdReporter
47
+
48
+ The ThresholdReporter class can be configured with various thresholds that determines the auditing level of the audit event when reported. This allows you to set levels at which you can define informational, warning and error conditions based on the value reported. Useful in examples such as where a database operation should take less than an certain amount of time. Anything above that value will then be reported as warnings or errors. The flow identifier parameter is optional.
49
+
50
+ ```ruby
51
+ flow_id = SoarFlow::ID::generate_flow_id
52
+ threshold_reporter = SoarAnalytics::ThresholdReporter.new(name: 'my_threshold_reporter', info_threshold: 1, warn_threshold: 2, error_threshold: 3)
53
+ value = 2
54
+ threshold_reporter.report(value,flow_id)
55
+ ```
56
+
57
+ ## TimeDeltaReporter
58
+
59
+ Probably the most useful reporter in this gem is the TimeDeltaReporter which calculates and reports on the time difference since the initialization of the object. This is a specialization of the ThresholdReporter. Only the parameter 'name' is required during the initialization. The rest are optional and defaults to info level for all time deltas greater or equal to zero. The flow identifier parameter is also optional.
60
+
61
+ ```ruby
62
+ flow_id = SoarFlow::ID::generate_flow_id
63
+ timer = SoarAnalytics::TimeDeltaReporter.new(name: "db_access_time", info_threshold: 1, warn_threshold: 2, error_threshold: 3)
64
+ sleep(1)
65
+ timer.report(flow_id)
66
+ ```
67
+
68
+ ## Contributing
69
+
70
+ Bug reports and feature requests are welcome by email to barney dot de dot villiers at hetzner dot co dot za. This gem is sponsored by Hetzner (Pty) Ltd (http://hetzner.co.za)
71
+
72
+ ## License
73
+
74
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
4
+
5
+ require "bundler/setup"
6
+ require 'soar_analytics'
7
+
8
+ # You can add fixtures and/or initialization code here to make experimenting
9
+ # with your gem easier. You can also use a different console, if you like.
10
+
11
+ # (If you use this, don't forget to add pry to your Gemfile!)
12
+ # require "pry"
13
+ # Pry.start
14
+
15
+ require "irb"
16
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,8 @@
1
+ require 'soar_analytics/version'
2
+ require 'soar_analytics/analytics'
3
+ require 'soar_analytics/reporter'
4
+ require 'soar_analytics/threshold_reporter'
5
+ require 'soar_analytics/time_delta_reporter'
6
+
7
+ module SoarAnalytics
8
+ end
@@ -0,0 +1,9 @@
1
+ module SoarAnalytics
2
+ def self.auditing=(auditing)
3
+ @@auditing = auditing
4
+ end
5
+
6
+ def self.auditing
7
+ @@auditing
8
+ end
9
+ end
@@ -0,0 +1,19 @@
1
+ require 'soar_auditing_format'
2
+
3
+ module SoarAnalytics
4
+ class Reporter
5
+ def initialize(name)
6
+ @name = name
7
+ end
8
+
9
+ def report(value, audit_level = :info, flow_identifier = nil)
10
+ SoarAnalytics.auditing.send(audit_level,format_key_value_pair(value),flow_identifier)
11
+ end
12
+
13
+ private
14
+
15
+ def format_key_value_pair(value)
16
+ SoarAuditingFormatter::Formatter.optional_field_format(@name,value)
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,31 @@
1
+ module SoarAnalytics
2
+ class ThresholdReporter < Reporter
3
+ def initialize(name:, info_threshold: 0, warn_threshold: nil, error_threshold: nil)
4
+ super(name)
5
+ @thresholds = [
6
+ { 'level' => :error, 'threshold' => error_threshold},
7
+ { 'level' => :warn, 'threshold' => warn_threshold},
8
+ { 'level' => :info, 'threshold' => info_threshold}
9
+ ]
10
+ end
11
+
12
+ def report(value, flow_identifier = nil)
13
+ audit_level = determine_highest_matching_auditing_level(value)
14
+ super(simplify_numbers(value), audit_level, flow_identifier) if audit_level
15
+ end
16
+
17
+ private
18
+
19
+ def determine_highest_matching_auditing_level(value)
20
+ @thresholds.each { | threshold |
21
+ return threshold['level'] if threshold['threshold'] and (value >= threshold['threshold'])
22
+ }
23
+ return nil
24
+ end
25
+
26
+ def simplify_numbers(value)
27
+ return "%.6f" % value if value.is_a?(Float)
28
+ return value
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,22 @@
1
+ module SoarAnalytics
2
+ class TimeDeltaReporter < ThresholdReporter
3
+ def initialize(name:, info_threshold: 0, warn_threshold: nil, error_threshold: nil)
4
+ super
5
+ record_start_time
6
+ end
7
+
8
+ def report(flow_identifier = nil)
9
+ super(calculate_time_delta, flow_identifier)
10
+ end
11
+
12
+ private
13
+
14
+ def record_start_time
15
+ @start_time = Time.now
16
+ end
17
+
18
+ def calculate_time_delta
19
+ Time.now - @start_time
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,3 @@
1
+ module SoarAnalytics
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1 @@
1
+ soar_analytics_sanity
@@ -0,0 +1 @@
1
+ ruby-2.3
data/sanity/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'soar_analytics', path: '../'
4
+ gem 'soar_auditing_provider', '~> 1.0'
5
+ gem "log4r_auditor", '~> 1.0'
6
+ gem "soar_flow", "~> 0.1.1"
7
+ gem "byebug"
data/sanity/sanity.rb ADDED
@@ -0,0 +1,91 @@
1
+ require 'soar_auditing_format'
2
+ require 'soar_auditing_provider'
3
+ require 'soar_flow'
4
+ require 'log4r_auditor'
5
+
6
+ require 'time'
7
+ require 'securerandom'
8
+ require "soar_analytics"
9
+
10
+ class Main
11
+ AUDITING_CONFIGURATION = {
12
+ 'auditing' => {
13
+ 'provider' => 'SoarAuditingProvider::AuditingProvider',
14
+ 'level' => 'info',
15
+ 'install_exit_handler' => 'true',
16
+ 'queue_worker' => {
17
+ 'queue_size' => 1000,
18
+ 'initial_back_off_in_seconds' => 1,
19
+ 'back_off_multiplier' => 2,
20
+ 'back_off_attempts' => 5
21
+ },
22
+ 'default_nfrs' => {
23
+ 'accessibility' => 'local',
24
+ 'privacy' => 'not encrypted',
25
+ 'reliability' => 'instance',
26
+ 'performance' => 'high'
27
+ },
28
+ 'auditors' => {
29
+ 'log4r' => {
30
+ 'adaptor' => 'Log4rAuditor::Log4rAuditor',
31
+ 'file_name' => 'soar_sc.log',
32
+ 'standard_stream' => 'stdout',
33
+ 'nfrs' => {
34
+ 'accessibility' => 'local',
35
+ 'privacy' => 'not encrypted',
36
+ 'reliability' => 'instance',
37
+ 'performance' => 'high'
38
+ }
39
+ }
40
+ }
41
+ }
42
+ } unless defined? AUDITING_CONFIGURATION; AUDITING_CONFIGURATION.freeze
43
+
44
+ def setup_analytics
45
+ myauditing = SoarAuditingProvider::AuditingProvider.new( AUDITING_CONFIGURATION['auditing'] )
46
+ myauditing.instance_flow_identifier = SoarFlow::ID::generate_flow_id
47
+ myauditing.service_identifier = 'my-test-service.com'
48
+ SoarAnalytics.auditing = myauditing
49
+ end
50
+
51
+ def test_time_delta_reporter
52
+ analytic_timer = SoarAnalytics::TimeDeltaReporter.new(name: "mytimer_that_should_not_be_audited", info_threshold: 1, warn_threshold: 2, error_threshold: 3)
53
+ sleep(0)
54
+ analytic_timer.report(SoarFlow::ID::generate_flow_id)
55
+
56
+ analytic_timer = SoarAnalytics::TimeDeltaReporter.new(name: "mytimer_with_default_values")
57
+ sleep(0)
58
+ analytic_timer.report(SoarFlow::ID::generate_flow_id)
59
+
60
+ analytic_timer = SoarAnalytics::TimeDeltaReporter.new(name: "mytimer", info_threshold: 1, warn_threshold: 2, error_threshold: 3)
61
+ sleep(1)
62
+ analytic_timer.report(SoarFlow::ID::generate_flow_id)
63
+
64
+ analytic_timer = SoarAnalytics::TimeDeltaReporter.new(name: "mytimer", info_threshold: 1, warn_threshold: 2, error_threshold: 3)
65
+ sleep(2)
66
+ analytic_timer.report(SoarFlow::ID::generate_flow_id)
67
+
68
+ analytic_timer = SoarAnalytics::TimeDeltaReporter.new(name: "mytimer", info_threshold: 1, warn_threshold: 2, error_threshold: 3)
69
+ sleep(3)
70
+ analytic_timer.report(SoarFlow::ID::generate_flow_id)
71
+
72
+ flow_id = SoarFlow::ID::generate_flow_id
73
+ reporter = SoarAnalytics::Reporter.new('my_reporter')
74
+ value = 123
75
+ reporter.report(value,:warn,flow_id)
76
+
77
+ flow_id = SoarFlow::ID::generate_flow_id
78
+ threshold_reporter = SoarAnalytics::ThresholdReporter.new(name: 'my_threshold_reporter', info_threshold: 1, warn_threshold: 2, error_threshold: 3)
79
+ value = 2
80
+ threshold_reporter.report(value,flow_id)
81
+
82
+ flow_id = SoarFlow::ID::generate_flow_id
83
+ timer = SoarAnalytics::TimeDeltaReporter.new(name: "db_access_time", info_threshold: 1, warn_threshold: 2, error_threshold: 3)
84
+ sleep(1)
85
+ timer.report(flow_id)
86
+ end
87
+ end
88
+
89
+ main = Main.new
90
+ main.setup_analytics
91
+ main.test_time_delta_reporter
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'soar_analytics/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'soar_analytics'
8
+ spec.version = SoarAnalytics::VERSION
9
+ spec.authors = ['Barney de Villiers']
10
+ spec.email = ['barney.de.villiers@hetzner.co.za']
11
+
12
+ spec.summary = %q{Analytics toolset for the SOAR architecture}
13
+ spec.description = %q{Analytics toolset for the SOAR architecture that provides for easy analysis of matters such as performance}
14
+ spec.homepage = 'https://github.com/hetznerZA/soar_analytics'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = 'exe'
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.11'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
+ spec.add_development_dependency 'rspec', '~> 3.0'
25
+ spec.add_development_dependency 'byebug', '~> 9'
26
+ spec.add_development_dependency 'soar_auditing_format', '~> 0.0.5'
27
+ spec.add_development_dependency 'soar_auditing_provider', '~> 1.0'
28
+ spec.add_development_dependency 'log4r_auditor', '~> 1.0'
29
+ spec.add_development_dependency 'soar_flow', '~> 0.1'
30
+
31
+ spec.add_dependency 'soar_auditing_format', '~> 0.0.5'
32
+
33
+ end
metadata ADDED
@@ -0,0 +1,192 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: soar_analytics
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Barney de Villiers
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-09-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: byebug
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '9'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '9'
69
+ - !ruby/object:Gem::Dependency
70
+ name: soar_auditing_format
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.0.5
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.0.5
83
+ - !ruby/object:Gem::Dependency
84
+ name: soar_auditing_provider
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: log4r_auditor
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: soar_flow
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.1'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.1'
125
+ - !ruby/object:Gem::Dependency
126
+ name: soar_auditing_format
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 0.0.5
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 0.0.5
139
+ description: Analytics toolset for the SOAR architecture that provides for easy analysis
140
+ of matters such as performance
141
+ email:
142
+ - barney.de.villiers@hetzner.co.za
143
+ executables: []
144
+ extensions: []
145
+ extra_rdoc_files: []
146
+ files:
147
+ - ".gitignore"
148
+ - ".rspec"
149
+ - ".ruby-gemset"
150
+ - ".ruby-version"
151
+ - Gemfile
152
+ - LICENSE.txt
153
+ - README.md
154
+ - Rakefile
155
+ - bin/console
156
+ - bin/setup
157
+ - lib/soar_analytics.rb
158
+ - lib/soar_analytics/analytics.rb
159
+ - lib/soar_analytics/reporter.rb
160
+ - lib/soar_analytics/threshold_reporter.rb
161
+ - lib/soar_analytics/time_delta_reporter.rb
162
+ - lib/soar_analytics/version.rb
163
+ - sanity/.ruby-gemset
164
+ - sanity/.ruby-version
165
+ - sanity/Gemfile
166
+ - sanity/sanity.rb
167
+ - soar_analytics.gemspec
168
+ homepage: https://github.com/hetznerZA/soar_analytics
169
+ licenses:
170
+ - MIT
171
+ metadata: {}
172
+ post_install_message:
173
+ rdoc_options: []
174
+ require_paths:
175
+ - lib
176
+ required_ruby_version: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: '0'
186
+ requirements: []
187
+ rubyforge_project:
188
+ rubygems_version: 2.5.1
189
+ signing_key:
190
+ specification_version: 4
191
+ summary: Analytics toolset for the SOAR architecture
192
+ test_files: []