lex-log 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: 3470da7f75d3c1e8ac25834b177641c2fa32d1b0a3be87a294f71afadd9a599e
4
- data.tar.gz: 50b4413b1a97c2aca9e6bcf8248c06add60a778c64733c15b5cdf9a8519c5f47
3
+ metadata.gz: 11d058a62221614e384e4c2a0f86e831f01fb0f070617962b4cc67231ea7dac3
4
+ data.tar.gz: ff44516abf43cbf7fd17220a750719db22b059532cb5522e48d0743303913347
5
5
  SHA512:
6
- metadata.gz: 7b8403638f01d8713a661ccc22fd335113e72ea482d9294096700b99ab8dc094eb3c8739b352812f76dd6016ae7c075d663b14d887f533c92872d46422a169f7
7
- data.tar.gz: 29c49ff7b93b408e3503e369d83f6083c7e9c495f691bcce094d08bc73070cb2d4e5283b954d4249414654bb9cb7142f00279120537728c4c657ae503aab4c85
6
+ metadata.gz: f4e42ef30c71984c53e771cc9757210025667d60edf97afece8f414d75a25487ea591b250e1f687bb7218b0aafa77af6833e07bf6cdec7acf005d09269ff3af1
7
+ data.tar.gz: 3ac59e10f98a32e9a0c46b17043dac15ab75054229f0fb626c95db6cdd68bd03c51b84be47d477f622911d531f7c52e6454343607e5a252df16315eb87971fd4
@@ -0,0 +1,16 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
+
7
+ jobs:
8
+ ci:
9
+ uses: LegionIO/.github/.github/workflows/ci.yml@main
10
+
11
+ release:
12
+ needs: ci
13
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
14
+ uses: LegionIO/.github/.github/workflows/release.yml@main
15
+ secrets:
16
+ rubygems-api-key: ${{ secrets.RUBYGEMS_API_KEY }}
data/.gitignore CHANGED
@@ -7,5 +7,7 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
 
10
+ Gemfile.lock
11
+
10
12
  # rspec failure tracking
11
13
  .rspec_status
data/.rubocop.yml CHANGED
@@ -1,20 +1,50 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.4
3
+ NewCops: enable
4
+ SuggestExtensions: false
5
+
1
6
  Layout/LineLength:
2
- Max: 120
7
+ Max: 160
8
+
9
+ Layout/SpaceAroundEqualsInParameterDefault:
10
+ EnforcedStyle: space
11
+
12
+ Layout/HashAlignment:
13
+ EnforcedHashRocketStyle: table
14
+ EnforcedColonStyle: table
15
+
3
16
  Metrics/MethodLength:
4
- Max: 30
17
+ Max: 50
18
+
5
19
  Metrics/ClassLength:
6
20
  Max: 1500
21
+
22
+ Metrics/ModuleLength:
23
+ Max: 1500
24
+
7
25
  Metrics/BlockLength:
8
- Max: 50
26
+ Max: 40
27
+ Exclude:
28
+ - 'spec/**/*'
29
+
30
+ Metrics/AbcSize:
31
+ Max: 60
32
+
33
+ Metrics/CyclomaticComplexity:
34
+ Max: 15
35
+
36
+ Metrics/PerceivedComplexity:
37
+ Max: 17
38
+
9
39
  Style/Documentation:
10
40
  Enabled: false
11
- AllCops:
12
- TargetRubyVersion: 2.5
13
- NewCops: enable
14
- SuggestExtensions: false
41
+
42
+ Style/SymbolArray:
43
+ Enabled: true
44
+
15
45
  Style/FrozenStringLiteralComment:
16
- Enabled: false
46
+ Enabled: true
47
+ EnforcedStyle: always
48
+
17
49
  Naming/FileName:
18
50
  Enabled: false
19
- Style/ClassAndModuleChildren:
20
- Enabled: false
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- # LEX::Log
1
+ # Changelog
2
+
3
+ ## [0.1.5] - 2026-03-22
4
+
5
+ ### Changed
6
+ - Updated `legion-logging` gemspec dependency to `>= 1.2.8`
7
+
8
+ ## [0.1.4]
2
9
 
3
- ## v0.1.4
4
10
  Cleaning up things for github migration
data/CLAUDE.md ADDED
@@ -0,0 +1,62 @@
1
+ # lex-log: Async Logging Extension for LegionIO
2
+
3
+ **Repository Level 3 Documentation**
4
+ - **Parent**: `/Users/miverso2/rubymine/legion/extensions-core/CLAUDE.md`
5
+ - **Grandparent**: `/Users/miverso2/rubymine/legion/CLAUDE.md`
6
+
7
+ ## Purpose
8
+
9
+ Legion Extension that provides asynchronous logging to STDOUT and files within the Legion framework. Dispatches log messages via the message bus to the `Output` runner, which writes them using `legion-logging`.
10
+
11
+ **GitHub**: https://github.com/LegionIO/lex-log
12
+ **License**: MIT
13
+ **Version**: 0.1.4
14
+
15
+ ## Architecture
16
+
17
+ ```
18
+ Legion::Extensions::Log
19
+ └── Runners/
20
+ └── Output # Log output handler (no explicit actor - auto-generated subscription)
21
+ ├── to_file # Write log message to a file at given path
22
+ └── to_stdout # Write log message to STDOUT via Legion::Logging
23
+ ```
24
+
25
+ No explicit actors directory - the framework auto-generates a subscription actor for the Output runner.
26
+
27
+ ## Key Files
28
+
29
+ | Path | Purpose |
30
+ |------|---------|
31
+ | `lib/legion/extensions/log.rb` | Entry point, extension registration |
32
+ | `lib/legion/extensions/log/runners/output.rb` | `to_file` and `to_stdout` implementations |
33
+
34
+ ## Runner Interface
35
+
36
+ **`to_file(location:, message:, level: 'info', **_opts)`**
37
+ Creates a `Legion::Logging::Logger` instance targeting `location` and writes at the given level.
38
+
39
+ **`to_stdout(message:, level: 'info', **_opts)`**
40
+ Delegates to `Legion::Logging` (debug/info/warn/error/fatal/unknown).
41
+
42
+ Both accept `level:` values: `debug`, `info`, `warn`, `error`, `fatal`, `unknown`.
43
+
44
+ ## Dependencies
45
+
46
+ | Gem | Purpose |
47
+ |-----|---------|
48
+ | `legion-logging` | Core logging library used by both runners |
49
+
50
+ ## Testing
51
+
52
+ ```bash
53
+ bundle install
54
+ bundle exec rspec
55
+ bundle exec rubocop
56
+ ```
57
+
58
+ 18 examples, 0 failures, 100% line coverage. Output runner specs cover all log levels for both `to_file` and `to_stdout`.
59
+
60
+ ---
61
+
62
+ **Maintained By**: Matthew Iverson (@Esity)
data/Dockerfile CHANGED
@@ -1,9 +1,6 @@
1
1
  FROM legionio/legion:latest
2
2
  LABEL maintainer="Matthew Iverson <matthewdiverson@gmail.com>"
3
3
 
4
- RUN mkdir /etc/legionio
5
- RUN apk update && apk add build-base tzdata gcc git
6
-
7
4
  COPY . ./
8
5
  RUN gem install lex-log --no-document --no-prerelease
9
- CMD ruby --jit $(which legionio)
6
+ CMD ruby --yjit $(which legionio)
data/Gemfile CHANGED
@@ -1,6 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
  gemspec
3
5
 
6
+ gem 'legionio'
7
+
4
8
  group :test do
5
9
  gem 'rake'
6
10
  gem 'rspec'
data/README.md CHANGED
@@ -1,2 +1,37 @@
1
- # Legion::Extensions::Log
2
- Allows Legion to async log things. Basically used 99% of the time for testing
1
+ # lex-log
2
+
3
+ Async logging extension for [LegionIO](https://github.com/LegionIO/LegionIO). Routes log messages through the message bus to write to STDOUT or a file.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ gem install lex-log
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Dispatch log messages via the `Output` runner:
14
+
15
+ **Write to stdout:**
16
+ ```ruby
17
+ Legion::Ingress.run('lex_log.output.to_stdout', message: 'Hello world', level: 'info')
18
+ ```
19
+
20
+ **Write to a file:**
21
+ ```ruby
22
+ Legion::Ingress.run('lex_log.output.to_file', location: '/var/log/myapp.log', message: 'Event occurred', level: 'warn')
23
+ ```
24
+
25
+ ### Log Levels
26
+
27
+ Accepted values for `level:`: `debug`, `info`, `warn`, `error`, `fatal`, `unknown`. Defaults to `info`.
28
+
29
+ ## Requirements
30
+
31
+ - Ruby >= 3.4
32
+ - [LegionIO](https://github.com/LegionIO/LegionIO) framework
33
+ - `legion-logging`
34
+
35
+ ## License
36
+
37
+ MIT
data/docker_deploy.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  long_name = 'lex-log'
4
5
  name = 'log'
data/lex-log.gemspec CHANGED
@@ -12,19 +12,18 @@ Gem::Specification.new do |spec|
12
12
  spec.description = 'A LegionIO Extension to log to STDOUT and to files in an async fashion'
13
13
  spec.homepage = 'https://github.com/LegionIO/lex-log'
14
14
  spec.license = 'MIT'
15
- spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
15
+ spec.required_ruby_version = '>= 3.4'
16
16
 
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
- spec.metadata['source_code_uri'] = 'https://github.com/LegionIO/lex-logsrc'
18
+ spec.metadata['source_code_uri'] = 'https://github.com/LegionIO/lex-log'
19
19
  spec.metadata['documentation_uri'] = 'https://github.com/LegionIO/lex-log'
20
20
  spec.metadata['changelog_uri'] = 'https://github.com/LegionIO/lex-log'
21
21
  spec.metadata['bug_tracker_uri'] = 'https://github.com/LegionIO/lex-log/issues'
22
+ spec.metadata['rubygems_mfa_required'] = 'true'
22
23
 
23
24
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
25
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
26
  end
26
27
  spec.require_paths = ['lib']
27
- spec.add_dependency 'legion-logging'
28
-
29
- spec.add_development_dependency 'legionio'
28
+ spec.add_dependency 'legion-logging', '>= 1.2.8'
30
29
  end
@@ -2,48 +2,52 @@
2
2
 
3
3
  require 'legion/logging/logger'
4
4
 
5
- module Legion::Extensions::Log
6
- module Runners
7
- module Output
8
- def to_file(location:, message:, level: 'info', **_opts)
9
- logger = Legion::Logging::Logger.new(log_file: location, level: 'debug')
10
- case level
11
- when 'debug'
12
- logger.debug message
13
- when 'warn'
14
- logger.warn message
15
- when 'error'
16
- logger.error message
17
- when 'fatal'
18
- logger.fatal message
19
- when 'unknown'
20
- logger.unknown message
21
- else
22
- logger.info message
23
- end
5
+ module Legion
6
+ module Extensions
7
+ module Log
8
+ module Runners
9
+ module Output
10
+ def to_file(location:, message:, level: 'info', **_opts)
11
+ logger = Legion::Logging::Logger.new(log_file: location, level: 'debug')
12
+ case level
13
+ when 'debug'
14
+ logger.debug message
15
+ when 'warn'
16
+ logger.warn message
17
+ when 'error'
18
+ logger.error message
19
+ when 'fatal'
20
+ logger.fatal message
21
+ when 'unknown'
22
+ logger.unknown message
23
+ else
24
+ logger.info message
25
+ end
24
26
 
25
- { message: message, level: level, location: location }
26
- end
27
+ { message: message, level: level, location: location }
28
+ end
27
29
 
28
- def to_stdout(message:, level: 'info', **_opts)
29
- case level
30
- when 'debug'
31
- Legion::Logging.debug message
32
- when 'warn'
33
- Legion::Logging.warn message
34
- when 'error'
35
- Legion::Logging.error message
36
- when 'fatal'
37
- Legion::Logging.fatal message
38
- when 'unknown'
39
- Legion::Logging.unknown message
40
- else
41
- Legion::Logging.info message
30
+ def to_stdout(message:, level: 'info', **_opts)
31
+ case level
32
+ when 'debug'
33
+ Legion::Logging.debug message
34
+ when 'warn'
35
+ Legion::Logging.warn message
36
+ when 'error'
37
+ Legion::Logging.error message
38
+ when 'fatal'
39
+ Legion::Logging.fatal message
40
+ when 'unknown'
41
+ Legion::Logging.unknown message
42
+ else
43
+ Legion::Logging.info message
44
+ end
45
+ { level: level, message: message }
46
+ end
47
+
48
+ include Legion::Extensions::Helpers::Lex
42
49
  end
43
- { level: level, message: message }
44
50
  end
45
-
46
- include Legion::Extensions::Helpers::Lex
47
51
  end
48
52
  end
49
53
  end
@@ -3,7 +3,7 @@
3
3
  module Legion
4
4
  module Extensions
5
5
  module Log
6
- VERSION = '0.1.4'
6
+ VERSION = '0.1.5'
7
7
  end
8
8
  end
9
9
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'legion/extensions/log/version'
2
4
 
3
5
  module Legion
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-log
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2021-06-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: legion-logging
@@ -16,28 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '0'
18
+ version: 1.2.8
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: legionio
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
25
+ version: 1.2.8
41
26
  description: A LegionIO Extension to log to STDOUT and to files in an async fashion
42
27
  email:
43
28
  - matthewdiverson@gmail.com
@@ -45,15 +30,14 @@ executables: []
45
30
  extensions: []
46
31
  extra_rdoc_files: []
47
32
  files:
48
- - ".github/workflows/rspec.yml"
49
- - ".github/workflows/rubocop.yml"
33
+ - ".github/workflows/ci.yml"
50
34
  - ".gitignore"
51
35
  - ".rspec"
52
36
  - ".rubocop.yml"
53
37
  - CHANGELOG.md
38
+ - CLAUDE.md
54
39
  - Dockerfile
55
40
  - Gemfile
56
- - Gemfile.lock
57
41
  - LICENSE
58
42
  - README.md
59
43
  - docker_deploy.rb
@@ -67,11 +51,11 @@ licenses:
67
51
  - MIT
68
52
  metadata:
69
53
  homepage_uri: https://github.com/LegionIO/lex-log
70
- source_code_uri: https://github.com/LegionIO/lex-logsrc
54
+ source_code_uri: https://github.com/LegionIO/lex-log
71
55
  documentation_uri: https://github.com/LegionIO/lex-log
72
56
  changelog_uri: https://github.com/LegionIO/lex-log
73
57
  bug_tracker_uri: https://github.com/LegionIO/lex-log/issues
74
- post_install_message:
58
+ rubygems_mfa_required: 'true'
75
59
  rdoc_options: []
76
60
  require_paths:
77
61
  - lib
@@ -79,15 +63,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
79
63
  requirements:
80
64
  - - ">="
81
65
  - !ruby/object:Gem::Version
82
- version: 2.5.0
66
+ version: '3.4'
83
67
  required_rubygems_version: !ruby/object:Gem::Requirement
84
68
  requirements:
85
69
  - - ">="
86
70
  - !ruby/object:Gem::Version
87
71
  version: '0'
88
72
  requirements: []
89
- rubygems_version: 3.1.6
90
- signing_key:
73
+ rubygems_version: 3.6.9
91
74
  specification_version: 4
92
75
  summary: Used to generate logs within the Legion framework
93
76
  test_files: []
@@ -1,69 +0,0 @@
1
- name: RSpec
2
- on: [push, pull_request]
3
-
4
- jobs:
5
- rspec:
6
- strategy:
7
- fail-fast: false
8
- matrix:
9
- os: [ubuntu-latest]
10
- ruby: [2.7]
11
- runs-on: ${{ matrix.os }}
12
- steps:
13
- - uses: actions/checkout@v2
14
- - uses: ruby/setup-ruby@v1
15
- with:
16
- ruby-version: ${{ matrix.ruby }}
17
- bundler-cache: true
18
- - name: RSpec run
19
- run: |
20
- bash -c "
21
- bundle exec rspec
22
- [[ $? -ne 2 ]]
23
- "
24
- rspec-mri:
25
- needs: rspec
26
- strategy:
27
- fail-fast: false
28
- matrix:
29
- os: [ ubuntu-latest ]
30
- ruby: [2.5, 2.6, '3.0', head]
31
- runs-on: ${{ matrix.os }}
32
- steps:
33
- - uses: actions/checkout@v2
34
- - uses: ruby/setup-ruby@v1
35
- with:
36
- ruby-version: ${{ matrix.ruby }}
37
- bundler-cache: true
38
- - run: bundle exec rspec
39
- rspec-jruby:
40
- needs: rspec
41
- strategy:
42
- fail-fast: false
43
- matrix:
44
- os: [ ubuntu-latest ]
45
- ruby: [ jruby, jruby-head]
46
- runs-on: ${{ matrix.os }}
47
- steps:
48
- - uses: actions/checkout@v2
49
- - uses: ruby/setup-ruby@v1
50
- with:
51
- ruby-version: ${{ matrix.ruby }}
52
- bundler-cache: true
53
- - run: JRUBY_OPTS="--debug" bundle exec rspec
54
- rspec-truffleruby:
55
- needs: rspec
56
- strategy:
57
- fail-fast: false
58
- matrix:
59
- os: [ ubuntu-latest ]
60
- ruby: [truffleruby]
61
- runs-on: ${{ matrix.os }}
62
- steps:
63
- - uses: actions/checkout@v2
64
- - uses: ruby/setup-ruby@v1
65
- with:
66
- ruby-version: ${{ matrix.ruby }}
67
- bundler-cache: true
68
- - run: bundle exec rspec
69
-
@@ -1,28 +0,0 @@
1
- name: Rubocop
2
- on: [push, pull_request]
3
- jobs:
4
- rubocop:
5
- strategy:
6
- fail-fast: false
7
- matrix:
8
- os: [ubuntu-latest]
9
- ruby: [2.7]
10
- runs-on: ${{ matrix.os }}
11
- steps:
12
- - uses: actions/checkout@v2
13
- - uses: ruby/setup-ruby@v1
14
- with:
15
- ruby-version: ${{ matrix.ruby }}
16
- bundler-cache: true
17
- - name: Install Rubocop
18
- run: gem install rubocop code-scanning-rubocop
19
- - name: Rubocop run --no-doc
20
- run: |
21
- bash -c "
22
- rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif
23
- [[ $? -ne 2 ]]
24
- "
25
- - name: Upload Sarif output
26
- uses: github/codeql-action/upload-sarif@v1
27
- with:
28
- sarif_file: rubocop.sarif
data/Gemfile.lock DELETED
@@ -1,127 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- lex-log (0.1.4)
5
- legion-logging
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- amq-protocol (2.3.2)
11
- ast (2.4.2)
12
- aws-eventstream (1.1.1)
13
- aws-sigv4 (1.2.3)
14
- aws-eventstream (~> 1, >= 1.0.2)
15
- bunny (2.18.0)
16
- amq-protocol (~> 2.3, >= 2.3.1)
17
- sorted_set (~> 1, >= 1.0.2)
18
- concurrent-ruby (1.1.9)
19
- concurrent-ruby-ext (1.1.9)
20
- concurrent-ruby (= 1.1.9)
21
- connection_pool (2.2.5)
22
- daemons (1.4.0)
23
- dalli (2.7.11)
24
- diff-lcs (1.4.4)
25
- docile (1.4.0)
26
- json_pure (2.5.1)
27
- legion-cache (1.2.0)
28
- connection_pool (>= 2.2.3)
29
- dalli (>= 2.7)
30
- legion-logging
31
- legion-settings
32
- redis (>= 4.2)
33
- legion-crypt (1.2.0)
34
- vault (>= 0.15.0)
35
- legion-json (1.2.0)
36
- json_pure
37
- multi_json
38
- legion-logging (1.2.0)
39
- rainbow (~> 3)
40
- legion-settings (1.2.0)
41
- legion-json (>= 1.2)
42
- legion-transport (1.2.0)
43
- bunny (>= 2.17.0)
44
- concurrent-ruby (>= 1.1.7)
45
- legion-json
46
- legion-settings
47
- legionio (1.2.0)
48
- concurrent-ruby (>= 1.1.7)
49
- concurrent-ruby-ext (>= 1.1.7)
50
- daemons (>= 1.3.1)
51
- legion-cache (>= 0.2.0)
52
- legion-crypt (>= 0.2.0)
53
- legion-json (>= 0.2.0)
54
- legion-logging (>= 0.2.0)
55
- legion-settings (>= 0.2.0)
56
- legion-transport (>= 1.1.9)
57
- lex-node
58
- oj (>= 3.10)
59
- thor (>= 1)
60
- lex-node (0.2.0)
61
- multi_json (1.15.0)
62
- oj (3.11.5)
63
- parallel (1.20.1)
64
- parser (3.0.1.1)
65
- ast (~> 2.4.1)
66
- rainbow (3.0.0)
67
- rake (13.0.3)
68
- rbtree (0.4.4)
69
- redis (4.3.1)
70
- regexp_parser (2.1.1)
71
- rexml (3.2.5)
72
- rspec (3.10.0)
73
- rspec-core (~> 3.10.0)
74
- rspec-expectations (~> 3.10.0)
75
- rspec-mocks (~> 3.10.0)
76
- rspec-core (3.10.1)
77
- rspec-support (~> 3.10.0)
78
- rspec-expectations (3.10.1)
79
- diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.10.0)
81
- rspec-mocks (3.10.2)
82
- diff-lcs (>= 1.2.0, < 2.0)
83
- rspec-support (~> 3.10.0)
84
- rspec-support (3.10.2)
85
- rspec_junit_formatter (0.4.1)
86
- rspec-core (>= 2, < 4, != 2.12.0)
87
- rubocop (1.16.1)
88
- parallel (~> 1.10)
89
- parser (>= 3.0.0.0)
90
- rainbow (>= 2.2.2, < 4.0)
91
- regexp_parser (>= 1.8, < 3.0)
92
- rexml
93
- rubocop-ast (>= 1.7.0, < 2.0)
94
- ruby-progressbar (~> 1.7)
95
- unicode-display_width (>= 1.4.0, < 3.0)
96
- rubocop-ast (1.7.0)
97
- parser (>= 3.0.1.1)
98
- ruby-progressbar (1.11.0)
99
- set (1.0.1)
100
- simplecov (0.21.2)
101
- docile (~> 1.1)
102
- simplecov-html (~> 0.11)
103
- simplecov_json_formatter (~> 0.1)
104
- simplecov-html (0.12.3)
105
- simplecov_json_formatter (0.1.3)
106
- sorted_set (1.0.3)
107
- rbtree
108
- set (~> 1.0)
109
- thor (1.1.0)
110
- unicode-display_width (2.0.0)
111
- vault (0.16.0)
112
- aws-sigv4
113
-
114
- PLATFORMS
115
- ruby
116
-
117
- DEPENDENCIES
118
- legionio
119
- lex-log!
120
- rake
121
- rspec
122
- rspec_junit_formatter
123
- rubocop
124
- simplecov
125
-
126
- BUNDLED WITH
127
- 2.1.4