lit-cli 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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/cli.rb +14 -0
  3. metadata +43 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9db5febc2b273d72a49fe3567a45eb9f6045fa1d4907677862eba0ce7157ba60
4
+ data.tar.gz: 7eed4b5591f6c9d5f689ccda2912c93bdb7c02b66bfda3546cbf7c03945b6713
5
+ SHA512:
6
+ metadata.gz: 2db0ac7511c6adc7f5d9917c2f2c8aedf081b0d6f841c822abb14641e203ee671959719337ee0ced509d6c7175e5bd700ea10ee03f5265db710c89a8c9fdc17d
7
+ data.tar.gz: c5be990e305ad1c4dbefe5e25976607109ce0f7ad62c860a021191da3e535b4be875994c734f77c435751dfbd5dab362606f61c9df40a590bf8265e10f5c4f7d
@@ -0,0 +1,14 @@
1
+ ################################################################################
2
+ # Usage:
3
+ # lit <command>
4
+ #
5
+ # Example:
6
+ # lit bundle exec rails server
7
+ ################################################################################
8
+
9
+ # Enable Lit API.
10
+ ENV['LIT_ENABLED'] = 'true'
11
+
12
+ # Action original command.
13
+ command = ARGV.join " "
14
+ system command
metadata ADDED
@@ -0,0 +1,43 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lit-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Maedi Prichard
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-01-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Show log messages in the terminal by starting commands with 'lit'.
14
+ email: maediprichard@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/cli.rb
20
+ homepage: https://reflekt.dev/lit
21
+ licenses:
22
+ - MPL-2.0
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubygems_version: 3.0.3
40
+ signing_key:
41
+ specification_version: 4
42
+ summary: "Shine a light on terminal commands. \U0001F525"
43
+ test_files: []