-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
184994821 reformat scholarships page #21
base: main
Are you sure you want to change the base?
184994821 reformat scholarships page #21
Conversation
Gekerd patch 1
Scholarships link on home page
Add rspec scholarship
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall. Please just remove the DS_Stores from the commits and address my other comments and we should be good to merge after that!
.DS_Store
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be added to the commit. You should add it to the .gitignore.
app/views/.DS_Store
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be added to the commit. You should add it to the .gitignore.
app/.DS_Store
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be added to the commit. You should add it to the .gitignore.
spec/models/scholarship_spec.rb
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these tests commented out? Please either add a comment explaining this and maybe even a TODO to give guidelines for what future developers can do to fix them or just remove the tests altogether.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do I have to close this PR and re-open a new one after I fixed the issues?
@simonjov Hey Simon, I just added the DS_Stores to .gitignore, and removed the outdated test |
.gitignore
Outdated
@@ -40,3 +40,8 @@ | |||
|
|||
# Ignore application configuration | |||
/config/application.yml | |||
|
|||
# Ignore all the DS_Stores | |||
/.DS_Store |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can do simply .DS_Store
without including a /
or any directories.
You will likely want to remove all the existing ones. find . -name .DS_Store -delete
should do it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed it!
Replaced original styling with simplistic Bootstrap to keep style consistent with rest of app