lib/renuo/cli.rb in renuo-cli-3.1.0 vs lib/renuo/cli.rb in renuo-cli-3.1.1
- old
+ new
@@ -44,10 +44,13 @@
c.syntax = 'renuo display-name [options]'
c.summary = 'Sets the name of a customer on the Renuo dashboard'
c.description = 'Sets the name of a customer on the Renuo dashboard'
c.example 'Display "Peter Muster" on the dashboard', 'renuo display-name "Peter Muster"'
c.example 'Remove the current name from the dashboard', 'renuo display-name --delete'
+ c.example 'Override the current message on the dashboard', 'renuo display-name Happy friday 🍻 --override'
c.option '--delete', 'Deletes the current name'
+ c.option '--override', 'Overrides the entire message'
+ c.option '--monitor', 'Open the Google slides'
c.action do |args, options|
NameDisplay.new.run(args, options)
end
end