I wonder if there is a simple way to get all the currently set variables in Capistrano 3?
So if I have:
set :user, "deploy"
set :application, "someapp"
I would like to get something like:
all_variables # => { user: "deploy", application: "someapp", ... }
Thanks