k_log 0.0.1

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.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module KLog
4
+ VERSION = '0.0.1'
5
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: k_log
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Cruwys
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-03-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: " KLog provides console logging helpers and formatters\n"
14
+ email:
15
+ - david@ideasmen.com.au
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".github/workflows/main.yml"
21
+ - ".gitignore"
22
+ - ".rspec"
23
+ - ".rubocop.yml"
24
+ - CODE_OF_CONDUCT.md
25
+ - Gemfile
26
+ - Guardfile
27
+ - LICENSE.txt
28
+ - README.md
29
+ - Rakefile
30
+ - STORIES.md
31
+ - USAGE.md
32
+ - bin/console
33
+ - bin/k
34
+ - bin/kgitsync
35
+ - bin/khotfix
36
+ - bin/setup
37
+ - hooks/pre-commit
38
+ - hooks/update-version
39
+ - k_log.gemspec
40
+ - lib/k_log.rb
41
+ - lib/k_log/log_formatter.rb
42
+ - lib/k_log/log_helper.rb
43
+ - lib/k_log/log_util.rb
44
+ - lib/k_log/version.rb
45
+ homepage: http://appydave.com/gems/k-log
46
+ licenses:
47
+ - MIT
48
+ metadata:
49
+ homepage_uri: http://appydave.com/gems/k-log
50
+ source_code_uri: https://github.com/klueless-io/k_log
51
+ changelog_uri: https://github.com/klueless-io/k_log/commits/master
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '2.5'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubygems_version: 3.2.7
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: KLog provides console logging helpers and formatters
71
+ test_files: []