lib/rubysmith/configuration/enhancers/git_user.rb in rubysmith-4.0.0 vs lib/rubysmith/configuration/enhancers/git_user.rb in rubysmith-4.0.1

- old
+ new

@@ -21,10 +21,10 @@ private attr_reader :git def user - git.get("user.name") + git.get("user.name", "TODO") .then { |name| String(name).split } .then { |first, last| {author_given_name: first, author_family_name: last} } end end end