work_md 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f60288ea3fcd8489f2954550b208575e6b1a1fcb1b34aaeca43e9a4c0132a55
4
- data.tar.gz: 220ac9954f8cf8c654023f5f2a0cb24d82942f103f06b7045aca90c6684657a8
3
+ metadata.gz: 8c7ac71894ac4ae951f1b0b2a7e6e4c7f5bbca415b3e2a175b8ca35c9adfb4ca
4
+ data.tar.gz: 8c5372912117c88e8e1c25c7245d400b585c616101f13da1094fb13f61abc81f
5
5
  SHA512:
6
- metadata.gz: de934d77253bad8c9569d1461f6eef015a56ec2b317fdc7547952271f1a7780e2d4e59fd95705454f4f40f49ddfa67eb75593206142bd9ba76a625faf170dae7
7
- data.tar.gz: 1c24f71868455beee3c8cf80300cff9a768d3745aee2ae33545ce750ca6e5ccd9d05f8c4ef7303611ed72cca652178d5a356ba34274e45f367d23335e6330dd9
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WorkMd
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
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.1
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 00:00:00.000000000 Z
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.1.6
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!