class FluentPluginGenerator

def user_name

def user_name
  v = `git config --get user.name`.chomp
  v.empty? ? "TODO: Write your name" : v
end