lex-log 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +82 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.rubocop.yml +19 -0
- data/.travis.yml +6 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +139 -0
- data/LICENSE.txt +21 -0
- data/README.md +40 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/bitbucket-pipelines.yml +17 -0
- data/legion-extensions-log.gemspec +35 -0
- data/lib/legion/extensions/log.rb +12 -0
- data/lib/legion/extensions/log/runners/output.rb +49 -0
- data/lib/legion/extensions/log/version.rb +9 -0
- data/sonar-project.properties +12 -0
- metadata +162 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 43a98e887020930ca7e93e948ccefd422419c93d41a1231178b87fb699184db7
|
4
|
+
data.tar.gz: 59603d7546e8c6a00a710a4ead68df9e527e46ea9537d3fe7e98a13d6b6d8c70
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 564d835fc978094caa02de639d8f38187b9812a209ddc78c4697f2f7bd9bc70f76308b31933c50ee671bd79dc093c0421e65e1eedb104e3f3810aa250f09a2a5
|
7
|
+
data.tar.gz: a7fbc5dac487beabfb2dd5b4ad863ed7b00f11fc8abccd18167c8e661334a440ff109631e5611de883023e3eab6f090e6bfb083daf1c7c92c962bf9ba9d6d688
|
@@ -0,0 +1,82 @@
|
|
1
|
+
version: 2.1
|
2
|
+
orbs:
|
3
|
+
ruby: circleci/ruby@0.2.1
|
4
|
+
sonarcloud: sonarsource/sonarcloud@1.0.1
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
"rubocop":
|
8
|
+
docker:
|
9
|
+
- image: circleci/ruby:2.7-node
|
10
|
+
steps:
|
11
|
+
- checkout
|
12
|
+
- ruby/load-cache
|
13
|
+
- ruby/install-deps
|
14
|
+
- run:
|
15
|
+
name: Run Rubocop
|
16
|
+
command: bundle exec rubocop
|
17
|
+
- ruby/save-cache
|
18
|
+
"ruby-two-five":
|
19
|
+
docker:
|
20
|
+
- image: circleci/ruby:2.5
|
21
|
+
steps:
|
22
|
+
- checkout
|
23
|
+
- ruby/load-cache
|
24
|
+
- run:
|
25
|
+
name: update bundler
|
26
|
+
command: gem update bundler
|
27
|
+
- ruby/install-deps
|
28
|
+
- ruby/run-tests
|
29
|
+
- ruby/save-cache
|
30
|
+
"ruby-two-six":
|
31
|
+
docker:
|
32
|
+
- image: circleci/ruby:2.6
|
33
|
+
steps:
|
34
|
+
- checkout
|
35
|
+
- ruby/load-cache
|
36
|
+
- run:
|
37
|
+
name: update bundler
|
38
|
+
command: gem update bundler
|
39
|
+
- ruby/install-deps
|
40
|
+
- ruby/run-tests
|
41
|
+
- ruby/save-cache
|
42
|
+
"ruby-two-seven":
|
43
|
+
docker:
|
44
|
+
- image: circleci/ruby:2.7
|
45
|
+
steps:
|
46
|
+
- checkout
|
47
|
+
- ruby/load-cache
|
48
|
+
- ruby/install-deps
|
49
|
+
- ruby/run-tests
|
50
|
+
- ruby/save-cache
|
51
|
+
"sonarcloud":
|
52
|
+
docker:
|
53
|
+
- image: circleci/ruby:2.7
|
54
|
+
steps:
|
55
|
+
- checkout
|
56
|
+
- ruby/load-cache
|
57
|
+
- ruby/install-deps
|
58
|
+
- ruby/run-tests
|
59
|
+
- run:
|
60
|
+
name: Run Rubocop
|
61
|
+
command: bundle exec rubocop --format=json --out=rubocop-result.json
|
62
|
+
- sonarcloud/scan
|
63
|
+
- ruby/save-cache
|
64
|
+
|
65
|
+
workflows:
|
66
|
+
version: 2
|
67
|
+
rubocop-rspec:
|
68
|
+
jobs:
|
69
|
+
- rubocop
|
70
|
+
- ruby-two-five:
|
71
|
+
requires:
|
72
|
+
- rubocop
|
73
|
+
- ruby-two-six:
|
74
|
+
requires:
|
75
|
+
- ruby-two-five
|
76
|
+
- ruby-two-seven:
|
77
|
+
requires:
|
78
|
+
- ruby-two-five
|
79
|
+
- sonarcloud:
|
80
|
+
requires:
|
81
|
+
- ruby-two-seven
|
82
|
+
- ruby-two-six
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Layout/LineLength:
|
2
|
+
Max: 120
|
3
|
+
Metrics/MethodLength:
|
4
|
+
Max: 30
|
5
|
+
Metrics/ClassLength:
|
6
|
+
Max: 1500
|
7
|
+
Metrics/BlockLength:
|
8
|
+
Max: 50
|
9
|
+
Style/Documentation:
|
10
|
+
Enabled: false
|
11
|
+
AllCops:
|
12
|
+
TargetRubyVersion: 2.5
|
13
|
+
NewCops: enable
|
14
|
+
Style/FrozenStringLiteralComment:
|
15
|
+
Enabled: false
|
16
|
+
Naming/FileName:
|
17
|
+
Enabled: false
|
18
|
+
Style/ClassAndModuleChildren:
|
19
|
+
Enabled: false
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,139 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
lex-log (0.1.2)
|
5
|
+
legion-logging
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
amq-protocol (2.3.2)
|
11
|
+
ast (2.4.1)
|
12
|
+
aws-eventstream (1.1.0)
|
13
|
+
aws-sigv4 (1.2.2)
|
14
|
+
aws-eventstream (~> 1, >= 1.0.2)
|
15
|
+
bunny (2.16.1)
|
16
|
+
amq-protocol (~> 2.3, >= 2.3.1)
|
17
|
+
concurrent-ruby (1.1.7)
|
18
|
+
concurrent-ruby-ext (1.1.7)
|
19
|
+
concurrent-ruby (= 1.1.7)
|
20
|
+
connection_pool (2.2.3)
|
21
|
+
daemons (1.3.1)
|
22
|
+
dalli (2.7.10)
|
23
|
+
diff-lcs (1.4.4)
|
24
|
+
docile (1.3.2)
|
25
|
+
faraday (1.0.1)
|
26
|
+
multipart-post (>= 1.2, < 3)
|
27
|
+
faraday_middleware (1.0.0)
|
28
|
+
faraday (~> 1.0)
|
29
|
+
ffi (1.13.1)
|
30
|
+
hashdiff (1.0.1)
|
31
|
+
json (2.3.1)
|
32
|
+
legion-cache (1.0.0)
|
33
|
+
connection_pool
|
34
|
+
dalli
|
35
|
+
redis
|
36
|
+
legion-crypt (0.2.0)
|
37
|
+
rbnacl
|
38
|
+
vault
|
39
|
+
legion-data (0.2.0)
|
40
|
+
legion-logging
|
41
|
+
legion-settings
|
42
|
+
mysql2
|
43
|
+
sequel
|
44
|
+
legion-exceptions (1.1.0)
|
45
|
+
legion-json (1.1.0)
|
46
|
+
multi_json
|
47
|
+
legion-logging (1.1.0)
|
48
|
+
rainbow (~> 3)
|
49
|
+
legion-settings (1.1.1)
|
50
|
+
legion-json
|
51
|
+
legion-logging
|
52
|
+
legion-transport (1.1.1)
|
53
|
+
bunny
|
54
|
+
concurrent-ruby
|
55
|
+
legionio (0.2.0)
|
56
|
+
concurrent-ruby
|
57
|
+
concurrent-ruby-ext
|
58
|
+
daemons
|
59
|
+
hashdiff
|
60
|
+
legion-cache
|
61
|
+
legion-crypt
|
62
|
+
legion-data
|
63
|
+
legion-exceptions
|
64
|
+
legion-json
|
65
|
+
legion-logging
|
66
|
+
legion-settings
|
67
|
+
legion-transport
|
68
|
+
sleepiq
|
69
|
+
vault
|
70
|
+
multi_json (1.15.0)
|
71
|
+
multipart-post (2.1.1)
|
72
|
+
mysql2 (0.5.3)
|
73
|
+
parallel (1.19.2)
|
74
|
+
parser (2.7.1.4)
|
75
|
+
ast (~> 2.4.1)
|
76
|
+
rainbow (3.0.0)
|
77
|
+
rake (13.0.1)
|
78
|
+
rbnacl (7.1.1)
|
79
|
+
ffi
|
80
|
+
redis (4.2.1)
|
81
|
+
regexp_parser (1.7.1)
|
82
|
+
rexml (3.2.4)
|
83
|
+
rspec (3.9.0)
|
84
|
+
rspec-core (~> 3.9.0)
|
85
|
+
rspec-expectations (~> 3.9.0)
|
86
|
+
rspec-mocks (~> 3.9.0)
|
87
|
+
rspec-core (3.9.2)
|
88
|
+
rspec-support (~> 3.9.3)
|
89
|
+
rspec-expectations (3.9.2)
|
90
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
91
|
+
rspec-support (~> 3.9.0)
|
92
|
+
rspec-mocks (3.9.1)
|
93
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
94
|
+
rspec-support (~> 3.9.0)
|
95
|
+
rspec-support (3.9.3)
|
96
|
+
rspec_junit_formatter (0.4.1)
|
97
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
98
|
+
rubocop (0.89.1)
|
99
|
+
parallel (~> 1.10)
|
100
|
+
parser (>= 2.7.1.1)
|
101
|
+
rainbow (>= 2.2.2, < 4.0)
|
102
|
+
regexp_parser (>= 1.7)
|
103
|
+
rexml
|
104
|
+
rubocop-ast (>= 0.3.0, < 1.0)
|
105
|
+
ruby-progressbar (~> 1.7)
|
106
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
107
|
+
rubocop-ast (0.3.0)
|
108
|
+
parser (>= 2.7.1.4)
|
109
|
+
ruby-progressbar (1.10.1)
|
110
|
+
sequel (5.35.0)
|
111
|
+
simplecov (0.17.1)
|
112
|
+
docile (~> 1.1)
|
113
|
+
json (>= 1.8, < 3)
|
114
|
+
simplecov-html (~> 0.10.0)
|
115
|
+
simplecov-html (0.10.2)
|
116
|
+
sleepiq (0.2.2)
|
117
|
+
dalli
|
118
|
+
faraday
|
119
|
+
faraday_middleware
|
120
|
+
thor
|
121
|
+
thor (1.0.1)
|
122
|
+
unicode-display_width (1.7.0)
|
123
|
+
vault (0.15.0)
|
124
|
+
aws-sigv4
|
125
|
+
|
126
|
+
PLATFORMS
|
127
|
+
ruby
|
128
|
+
|
129
|
+
DEPENDENCIES
|
130
|
+
legionio
|
131
|
+
lex-log!
|
132
|
+
rake
|
133
|
+
rspec
|
134
|
+
rspec_junit_formatter
|
135
|
+
rubocop
|
136
|
+
simplecov (< 0.18.0)
|
137
|
+
|
138
|
+
BUNDLED WITH
|
139
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Esity
|
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,40 @@
|
|
1
|
+
# Legion::Extensions::Log
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/legion/extensions/log`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'legion-extensions-log'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install legion-extensions-log
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/legion-extensions-log.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'legion/extensions/log'
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require 'irb'
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
image: ruby:2.7.0
|
2
|
+
|
3
|
+
pipelines:
|
4
|
+
tags:
|
5
|
+
"v*":
|
6
|
+
- step:
|
7
|
+
name: Push to RubyGems
|
8
|
+
deployment: RubyGems
|
9
|
+
script:
|
10
|
+
- gem install bundler gem-release rake rspec
|
11
|
+
- bundle install
|
12
|
+
- rake build
|
13
|
+
- mkdir .gem
|
14
|
+
- (umask 077 ; echo $gem_creds | base64 --decode > .gem/credentials)
|
15
|
+
- gem release
|
16
|
+
artifacts:
|
17
|
+
- pkg/**
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/legion/extensions/log/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'lex-log'
|
7
|
+
spec.version = Legion::Extensions::Log::VERSION
|
8
|
+
spec.authors = ['Esity']
|
9
|
+
spec.email = ['matthewdiverson@gmail.com']
|
10
|
+
|
11
|
+
spec.summary = 'Used to generate logs within the Legion framework'
|
12
|
+
spec.description = 'It logs things'
|
13
|
+
spec.homepage = 'https://bitbucket.org/legion-io/lex-log'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
|
16
|
+
|
17
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
18
|
+
spec.metadata['source_code_uri'] = 'https://bitbucket.org/legion-io/lex-log/src'
|
19
|
+
spec.metadata['changelog_uri'] = 'https://bitbucket.org/legion-io/lex-log/src/master/CHANGELOG.md'
|
20
|
+
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ['lib']
|
26
|
+
|
27
|
+
spec.add_development_dependency 'legionio'
|
28
|
+
spec.add_development_dependency 'rake'
|
29
|
+
spec.add_development_dependency 'rspec'
|
30
|
+
spec.add_development_dependency 'rspec_junit_formatter'
|
31
|
+
spec.add_development_dependency 'rubocop'
|
32
|
+
spec.add_development_dependency 'simplecov', '< 0.18.0'
|
33
|
+
|
34
|
+
spec.add_dependency 'legion-logging'
|
35
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'legion/logging/logger'
|
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
|
24
|
+
|
25
|
+
{ message: message, level: level, location: location }
|
26
|
+
end
|
27
|
+
|
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
|
42
|
+
end
|
43
|
+
{ level: level, message: message }
|
44
|
+
end
|
45
|
+
|
46
|
+
include Legion::Extensions::Helpers::Lex
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
sonar.projectKey=legion-io_lex-log
|
2
|
+
sonar.organization=legion-io
|
3
|
+
sonar.projectName=Legion::Extensions::Log
|
4
|
+
sonar.sources=.
|
5
|
+
sonar.exclusions=vendor/**
|
6
|
+
sonar.coverage.exclusions=spec/**
|
7
|
+
sonar.ruby.coverage.reportPath=coverage/.resultset.json
|
8
|
+
sonar.ruby.file.suffixes=rb,ruby
|
9
|
+
sonar.ruby.coverage.framework=RSpec
|
10
|
+
sonar.ruby.rubocopConfig=.rubocop.yml
|
11
|
+
sonar.ruby.rubocop.reportPath=rubocop-result.json
|
12
|
+
sonar.ruby.rubocop.filePath=.
|
metadata
ADDED
@@ -0,0 +1,162 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lex-log
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Esity
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-08-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: legionio
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
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'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec_junit_formatter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: simplecov
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "<"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.18.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "<"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.18.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: legion-logging
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
description: It logs things
|
112
|
+
email:
|
113
|
+
- matthewdiverson@gmail.com
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- ".circleci/config.yml"
|
119
|
+
- ".gitignore"
|
120
|
+
- ".rspec"
|
121
|
+
- ".rubocop.yml"
|
122
|
+
- ".travis.yml"
|
123
|
+
- Gemfile
|
124
|
+
- Gemfile.lock
|
125
|
+
- LICENSE.txt
|
126
|
+
- README.md
|
127
|
+
- Rakefile
|
128
|
+
- bin/console
|
129
|
+
- bin/setup
|
130
|
+
- bitbucket-pipelines.yml
|
131
|
+
- legion-extensions-log.gemspec
|
132
|
+
- lib/legion/extensions/log.rb
|
133
|
+
- lib/legion/extensions/log/runners/output.rb
|
134
|
+
- lib/legion/extensions/log/version.rb
|
135
|
+
- sonar-project.properties
|
136
|
+
homepage: https://bitbucket.org/legion-io/lex-log
|
137
|
+
licenses:
|
138
|
+
- MIT
|
139
|
+
metadata:
|
140
|
+
homepage_uri: https://bitbucket.org/legion-io/lex-log
|
141
|
+
source_code_uri: https://bitbucket.org/legion-io/lex-log/src
|
142
|
+
changelog_uri: https://bitbucket.org/legion-io/lex-log/src/master/CHANGELOG.md
|
143
|
+
post_install_message:
|
144
|
+
rdoc_options: []
|
145
|
+
require_paths:
|
146
|
+
- lib
|
147
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: 2.5.0
|
152
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
|
+
requirements:
|
154
|
+
- - ">="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: '0'
|
157
|
+
requirements: []
|
158
|
+
rubygems_version: 3.1.2
|
159
|
+
signing_key:
|
160
|
+
specification_version: 4
|
161
|
+
summary: Used to generate logs within the Legion framework
|
162
|
+
test_files: []
|