You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace :app do
task :update_rvm_key do
execute :gpg, "--keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3"
end
end
before "rvm1:install:rvm", "app:update_rvm_key"
Fails with NoMethodError: undefined methodexecute' for main:Object. Wrapping theexecute` line in
roles(:all) do
execute :gpg, "--keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3"
end
appears to fix it.
The text was updated successfully, but these errors were encountered:
This section of the readme:
Fails with
NoMethodError: undefined method
execute' for main:Object. Wrapping the
execute` line inappears to fix it.
The text was updated successfully, but these errors were encountered: