work_md 0.2.1 → 0.2.2
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/lib/work_md/commands/parse.rb +4 -4
- data/lib/work_md/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c7ac71894ac4ae951f1b0b2a7e6e4c7f5bbca415b3e2a175b8ca35c9adfb4ca
|
4
|
+
data.tar.gz: 8c5372912117c88e8e1c25c7245d400b585c616101f13da1094fb13f61abc81f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c347b644ee03cab1a499f7bea1cab09bd0e5601c52b39edb41e76f2d616ae4225e1c557ae6fd77eb368e403e094188c060f56e2589ae6462e55139122d7cc8ac
|
7
|
+
data.tar.gz: 81ec971d682d95fb2834c73df6615bea6448294c764f36470af1fe607784fa8d6bf47b5163a2117c03494b909cdf153282899ee0f96812743f44dbbe8732ae0a
|
@@ -31,12 +31,12 @@ module WorkMd
|
|
31
31
|
|
32
32
|
File.open(PARSED_FILE_PATH, 'w+') do |f|
|
33
33
|
f.puts("# #{WorkMd::Config.title}\n\n")
|
34
|
-
f.puts("### #{t[:tasks]}:\n\n")
|
34
|
+
f.puts("### #{t[:tasks]} (#{parser.tasks.size}):\n\n")
|
35
35
|
parser.tasks.each do |task|
|
36
36
|
f.puts("- [#{task}\n\n") if task != ' ]'
|
37
37
|
end
|
38
38
|
f.puts("---\n\n")
|
39
|
-
f.puts("### #{t[:meetings]}:\n\n")
|
39
|
+
f.puts("### #{t[:meetings]} (#{parser.meetings.size}):\n\n")
|
40
40
|
parser.meetings.each do |meeting|
|
41
41
|
f.puts("- #{meeting}\n\n")
|
42
42
|
end
|
@@ -50,12 +50,12 @@ module WorkMd
|
|
50
50
|
f.puts("- #{meeting_annotation}\n\n")
|
51
51
|
end
|
52
52
|
f.puts("---\n\n")
|
53
|
-
f.puts("### #{t[:interruptions]}:\n\n")
|
53
|
+
f.puts("### #{t[:interruptions]} (#{parser.interruptions.size}):\n\n")
|
54
54
|
parser.interruptions.each do |interruption|
|
55
55
|
f.puts("- #{interruption}\n\n")
|
56
56
|
end
|
57
57
|
f.puts("---\n\n")
|
58
|
-
f.puts("### #{t[:difficulties]}:\n\n")
|
58
|
+
f.puts("### #{t[:difficulties]} (#{parser.difficulties.size}):\n\n")
|
59
59
|
parser.difficulties.each do |difficulty|
|
60
60
|
f.puts("- #{difficulty}\n\n")
|
61
61
|
end
|
data/lib/work_md/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: work_md
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henrique Fernandez Teixeira
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tty-box
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.7.0
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email:
|
43
43
|
- hriqueft@gmail.com
|
44
44
|
executables:
|
@@ -56,12 +56,12 @@ files:
|
|
56
56
|
- lib/work_md/config.rb
|
57
57
|
- lib/work_md/parser/engine.rb
|
58
58
|
- lib/work_md/version.rb
|
59
|
-
homepage:
|
59
|
+
homepage:
|
60
60
|
licenses:
|
61
61
|
- MIT
|
62
62
|
metadata:
|
63
63
|
source_code_uri: https://github.com/henriquefernandez/work_md
|
64
|
-
post_install_message:
|
64
|
+
post_install_message:
|
65
65
|
rdoc_options: []
|
66
66
|
require_paths:
|
67
67
|
- lib
|
@@ -76,8 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
80
|
-
signing_key:
|
79
|
+
rubygems_version: 3.2.15
|
80
|
+
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: Track your work activities, write annotations, recap what you did for a week,
|
83
83
|
month or specific days... and much more!
|