https://github.com/eliflores/railsgirls
https://github.com/eliflores/railsgirls
community rails railsgirls ruby tutorial
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eliflores/railsgirls
- Owner: eliflores
- Created: 2017-10-07T19:02:24.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-24T19:51:38.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T15:21:40.572Z (over 1 year ago)
- Topics: community, rails, railsgirls, ruby, tutorial
- Language: Ruby
- Homepage: https://railsiando.herokuapp.com/
- Size: 481 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README

[](https://codecov.io/gh/eliflores/railsgirls)
This is the application implemented for the [RailsGirls](http://guides.railsgirls.com/app) workshop.
* **Ruby version:** See [.tool-versions](.tool-versions)
* **Rails version:** See [Gemfile](Gemfile)
* **System dependencies:**
* **With the awesome help of:**
* [Font Awesome](http://fontawesome.io/)
* [Bootstrap](http://getbootstrap.com/)
* [Subtle Patterns](www.toptal.com/designers/subtlepatterns/)
* **Database creation:** ```rails db:migrate```
* **Database initialization:** ```rails db:migrate```
* **How to run the test suite:** ```bundle exec rails test && bundle exec rails test:system```
* **How to update gems (to [fix security vulnerabilities](https://github.com/eliflores/railsgirls/security), for
example):**
* Use [bundler](https://bundler.io/guides/using_bundler_in_applications.html)
```bash
bundle install --jobs 4 --retry 3
bundle update
```
* Run Tests and make sure they pass ✅
```bash
bundle exec rails test
bundle exec rails test:system
```