fewald-worklog 0.3.1 → 0.3.3
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/lib/project_storage.rb +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a506272e4cd5333bf7cde0d53485b610824df90266582bea673c80b21d068cb8
|
|
4
|
+
data.tar.gz: 8370a7e86257ffe693ad26f43814a35c78d0196e6594e0987e4b7242c75b0dad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e53674d918ee23dd49e66a833c2d86f8653d5ff84db5833bcf13864b121d843c09b2dfc94f4c92c38f5cd485d977fbc1f68a53efc71f9cb755589ac83e96552
|
|
7
|
+
data.tar.gz: 56d7e076bef0e561e1c4b1adf26c4b04c4a781bdc36f159460e4972f5645d7ea868de7df5625e7bb640377cee640be71f658cb5c0cd65e1d003f1dc1fcf26384
|
data/.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
data/lib/project_storage.rb
CHANGED
|
@@ -71,6 +71,11 @@ module Worklog
|
|
|
71
71
|
projects.key?(key)
|
|
72
72
|
end
|
|
73
73
|
|
|
74
|
+
# Alias for exist? method.
|
|
75
|
+
# @param key [String] The key of the project to check.
|
|
76
|
+
# @return [Boolean] Returns true if the project exists, false otherwise.
|
|
77
|
+
def key?(key) = exist?(key)
|
|
78
|
+
|
|
74
79
|
private
|
|
75
80
|
|
|
76
81
|
# Check whether projects.yaml exists in the project_dir
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fewald-worklog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Friedrich Ewald
|
|
@@ -171,10 +171,10 @@ metadata:
|
|
|
171
171
|
documentation_uri: https://f-ewald.github.io/worklog
|
|
172
172
|
rubygems_mfa_required: 'true'
|
|
173
173
|
post_install_message: |
|
|
174
|
-
|
|
174
|
+
==============================================================================
|
|
175
175
|
Thanks for installing fewald-worklog! Now you can use it by running wl from your terminal.
|
|
176
176
|
For more information, visit https://f-ewald.github.io/worklog or run wl help.
|
|
177
|
-
|
|
177
|
+
==============================================================================
|
|
178
178
|
rdoc_options: []
|
|
179
179
|
require_paths:
|
|
180
180
|
- lib
|