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.
@@ -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.send(attr)
172
+ tasks = entry.public_send(attr)
173
173
  next if !tasks || tasks.empty?
174
- f.puts sub_header(@config.send("#{attr}_header").capitalize)
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
@@ -5,5 +5,5 @@ module StandupMD
5
5
  # The gem verision
6
6
  #
7
7
  # @return [String]
8
- VERSION = '0.3.4'
8
+ VERSION = '0.3.5'
9
9
  end
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
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-17 00:00:00.000000000 Z
11
+ date: 2020-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake