Troels Knak-Nielsen
Troels Knak-Nielsen
Description for the feature says: "Disables force-pushes to this branch and prevents it from being deleted." - So I presume that it is still possible to push, but not force-push/delete....
There - see if it works now?
Try loading models with `autoload` to ensure that a db connection has been set up before the models are loaded: ``` class App < Sinatra::Base autoload :Article, 'lib/article' configure do...
The project hasn't really been maintained for a long time. If someone wants to take over, that would be welcomed.
@supersonictw if you want to take over maintenance, I'd be happy to give you access. This project hasn't had anyone care for it in a long while (myself included)
Turns out I can't actually do that, since I'm not admin. @adamn could you grant supersonictw collaborator rights?
I think you would be better of writing the setup-tasks to either be idempotent or to check if the change has already been applied. That's how I do it anyway....
@mattbrictson won't work if the root user can't login (Which is default for Ubuntu images an aws anyway).
What if the behaviour required an explicit option to be set. E.g.: ``` ruby task :foo do on roles(:web) do as "root", file_transfer: true do upload! "/tmp/foo", "/var/bar/cuux" end end...