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
decorates
Draper 1.0.0.beta3
class MyAwesomeDecorator < Draper::Decorator decorates :address end
Error raised:
uninitialized constant Addres
I think it's because of this:
$ irb -ractive_support/all 1.9.3p327 :001 > "address".classify => "Addres"
The text was updated successfully, but these errors were encountered:
@steveklabnik you want to use camelize:
camelize
>> "address".camelize => "Address"
The classify method is essentially string.singularize.camelize.
classify
string.singularize.camelize
Sorry, something went wrong.
Ahhh, thank you! ❤️.
ee2a015
Awesome response time 💃
I try. ❤️
No branches or pull requests
Draper 1.0.0.beta3
Error raised:
I think it's because of this:
The text was updated successfully, but these errors were encountered: