We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
after including the gem, the app will not start and throws this error:
c/lib/paperclip-trusted-io/paperclip/trusted_io.rb:3: syntax error, unexpected ',' def initialize(content, content_type: , filename: ) ^
I'm thinking it should be
def initialize(content, content_type , filename )
The text was updated successfully, but these errors were encountered:
What version of ruby are you using?
Your interpreter is failing on the use of required named parameters, which I think was added to ruby in version 2.1 or so.
Sorry, something went wrong.
No branches or pull requests
after including the gem, the app will not start and throws this error:
c/lib/paperclip-trusted-io/paperclip/trusted_io.rb:3: syntax error, unexpected ','
def initialize(content, content_type: , filename: )
^
I'm thinking it should be
def initialize(content, content_type , filename )
The text was updated successfully, but these errors were encountered: