boxroom
boxroom copied to clipboard
SyntaxError in FilesController#new
I am getting
syntax error, unexpected keyword_end, expecting end-of-input
for line
if current_user.can_read @folder || current_user.can_write @folder
I was able to get it to work by changing it to
if current_user.can_read(@folder) || current_user.can_write(@folder)
Same here, same workaround
Same here! Im using Centos 7 and Ruby 2.5 installed from Software Collections.