fewald-worklog 0.2.11 → 0.2.12
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 +4 -4
- data/.version +1 -1
- data/bin/wl +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f232d29f26e76923bd942e3c88ce4abb93641ba63ee57771e68650d87ce7657e
|
4
|
+
data.tar.gz: a711d57e3c7f06089163db0e75037710f98b68a974a96ebea1305d5b9f65c88c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '069dd04794012e835eb6600d311547003f03a9355a78e4df834066b011588779bdbb42319d2e0f41edf7153174a92fbab8ac9215aec55ce8046c8c5a7a8ab736'
|
7
|
+
data.tar.gz: de2ab21ac664879e3397740ed5d1d510e76bd0b7bc5173330006f033a48ce4b0e1b9b7f07ae507a68632d3e1762c40d0ac40b5fb46b320d335f454f9621c36a0
|
data/.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.12
|
data/bin/wl
CHANGED
@@ -6,12 +6,13 @@
|
|
6
6
|
if ENV['WL_PATH']
|
7
7
|
# Import the worklog CLI from the path specified in the WL_PATH environment variable
|
8
8
|
# This is used during development to avoid having to rely on the order of the $PATH.
|
9
|
-
|
10
|
-
|
9
|
+
warn "Loading worklog from #{ENV['WL_PATH']}. This should only be used during development."
|
10
|
+
warn 'To use the installed worklog, unset the WL_PATH environment variable.'
|
11
11
|
$LOAD_PATH.unshift File.join(ENV['WL_PATH'], 'lib')
|
12
12
|
require 'cli'
|
13
13
|
else
|
14
14
|
require_relative '../lib/cli'
|
15
15
|
end
|
16
16
|
|
17
|
+
# Start the Worklog CLI application (Thor application)
|
17
18
|
WorklogCLI.start
|