standup_md 0.3.4 → 0.3.5
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/Gemfile.lock +1 -1
- data/README.md +17 -5
- data/doc/README_md.html +24 -17
- data/doc/StandupMD/Cli/Helpers.html +4 -4
- data/doc/StandupMD/Config.html +1 -1
- data/doc/StandupMD/Config/Cli.html +2 -2
- data/doc/StandupMD/Config/File.html +6 -6
- data/doc/StandupMD/Entry.html +7 -7
- data/doc/StandupMD/EntryList.html +109 -187
- data/doc/StandupMD/File.html +3 -3
- data/doc/created.rid +14 -14
- data/doc/index.html +22 -17
- data/doc/js/search_index.js +1 -1
- data/doc/js/search_index.js.gz +0 -0
- data/doc/table_of_contents.html +49 -57
- data/lib/standup_md/cli/helpers.rb +26 -4
- data/lib/standup_md/entry.rb +1 -1
- data/lib/standup_md/entry_list.rb +19 -36
- data/lib/standup_md/file.rb +2 -2
- data/lib/standup_md/version.rb +1 -1
- metadata +2 -2
data/lib/standup_md/file.rb
CHANGED
@@ -169,9 +169,9 @@ module StandupMD
|
|
169
169
|
sorted_entries.filter(start_date, end_date).sort_reverse.each do |entry|
|
170
170
|
f.puts header(entry.date)
|
171
171
|
@config.sub_header_order.each do |attr|
|
172
|
-
tasks = entry.
|
172
|
+
tasks = entry.public_send(attr)
|
173
173
|
next if !tasks || tasks.empty?
|
174
|
-
f.puts sub_header(@config.
|
174
|
+
f.puts sub_header(@config.public_send("#{attr}_header").capitalize)
|
175
175
|
tasks.each { |task| f.puts @config.bullet_character + ' ' + task }
|
176
176
|
end
|
177
177
|
f.puts
|
data/lib/standup_md/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standup_md
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Gray
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|