lib/shelly/cli/main.rb in shelly-0.0.5 vs lib/shelly/cli/main.rb in shelly-0.0.6
- old
+ new
@@ -16,10 +16,15 @@
say "shelly version #{Shelly::VERSION}"
end
desc "register", "Registers new user account on Shelly Cloud"
def register
- invoke 'account:register'
+ invoke "account:register"
+ end
+
+ desc "add", "Adds new application to Shelly Cloud"
+ def add
+ invoke "apps:add"
end
end
end
end