fewald-worklog 0.2.3 → 0.2.4
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 +2 -1
- 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: 0bf5afbd99a91e77e5a3d16101653fecdeafdd808c5ca7c4ea23aa60be01ad54
|
4
|
+
data.tar.gz: 24c33cda5e47f1878c814bcb22ab06d9295e9e4d2e3f59b39ccdcf8801d3e8d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09d41c3cc186e650aebbca3d91840cfbec6c6207a67929c3b1b379b470008d00acacf8ff38ae20d9d648589354e2e2538220852ee86ad564a69b76e7b86607fa'
|
7
|
+
data.tar.gz: d8da05a9c100cc1b59243a303910faa2a675f0c15ade7ac253fb846b5e3435895245d454c0cf0957a096a94c6dcddeca0f2a8114f7f0c12d759189413dcef690
|
data/.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.4
|
data/bin/wl
CHANGED
@@ -8,7 +8,8 @@ if ENV['WL_PATH']
|
|
8
8
|
# This is used during development to avoid having to rely on the order of the $PATH.
|
9
9
|
puts "Loading worklog from #{ENV['WL_PATH']}. This should only be used during development."
|
10
10
|
puts 'To use the installed worklog, unset the WL_PATH environment variable.'
|
11
|
-
|
11
|
+
$LOAD_PATH.unshift File.join(ENV['WL_PATH'], 'lib')
|
12
|
+
require 'cli'
|
12
13
|
else
|
13
14
|
require_relative '../lib/cli'
|
14
15
|
end
|