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
s
I have a model call Boss.
Boss
When I execute this command rake db:seed:dump MODELS=Boss APPEND=true, it threw
rake db:seed:dump MODELS=Boss APPEND=true
NameError: uninitialized constant Bos
I need to execute by using rake db:seed:dump MODELS=Bosss APPEND=true, that is I must to put the extra s to fit it.
rake db:seed:dump MODELS=Bosss APPEND=true
The text was updated successfully, but these errors were encountered:
@fifiteen82726 In your rails app console, what does "Boss".x.strip.underscore.singularize.camelize.constantize returns ?
"Boss".x.strip.underscore.singularize.camelize.constantize
Sorry, something went wrong.
No branches or pull requests
I have a model call
Boss
.When I execute this command
rake db:seed:dump MODELS=Boss APPEND=true
, it threwI need to execute by using
rake db:seed:dump MODELS=Bosss APPEND=true
, that is I must to put the extras
to fit it.The text was updated successfully, but these errors were encountered: