Breakable Toy project from 2014 for Launch Academy. Emphasis: a content management system that allows you to create animated and interactive webcomics.
I just wanted to give you some input on your project as it is, currently.
Remove the /test folder. Since you are using RSpec, all of your test go in the /spec folder. /test was created by default when you called the rails new <project_name> command. In the future, if you would prefer Rails to not create the /test folder, run rails new <project_name> -T
In the description at the top of your GitHub project, 'webcomics' is misspelled.
Be sure to add a link to your live app to the README.md file when you deploy.
It would be nice to see the ER diagram and your 'To Do' list in the README.
I wouldn't set default urls in the migrations. This makes them difficult to change in the future. Create a method in your comics model that returns the default url if cover_img_url is nil.
I just wanted to give you some input on your project as it is, currently.
/test
folder. Since you are using RSpec, all of your test go in the/spec
folder./test
was created by default when you called therails new <project_name>
command. In the future, if you would prefer Rails to not create the/test
folder, runrails new <project_name> -T
cover_img_url
is nil.If you want any assistance or have any questions, let me know.