ga-wdi-boston / rails-api-many-to-many

Placeholder. Code in the rails-api-*. demo/code-along/lab series
Other
1 stars 77 forks source link

All commands should be of form `bin/<command>` aka binstubs #7

Closed payne-chris-r closed 7 years ago

payne-chris-r commented 8 years ago

bundle exec rake db... instead of rake db... bundle exec rails g... instead of rails g...

jrhorn424 commented 7 years ago

Now bin/rake

jrhorn424 commented 7 years ago

Everywhere like this:

- rails g scaffold borrower given_name:string family_name:string
+ bin/rails generate scaffold borrower given_name:string family_name:string
payne-chris-r commented 7 years ago

This appears to have been addressed.