{"id":20080206,"url":"https://github.com/williamscch/budget_rails_app","last_synced_at":"2025-10-04T09:26:48.075Z","repository":{"id":104469964,"uuid":"565888726","full_name":"williamscch/budget_rails_app","owner":"williamscch","description":"Mobile web application where you can manage your budget: you have a list of transactions associated with a category, so that you can see how much money you spent and on what.","archived":false,"fork":false,"pushed_at":"2023-07-13T23:50:07.000Z","size":407,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-04-09T05:41:44.304Z","etag":null,"topics":["capybara","css","erb","mvc","mvc-architecture","postgresql","rails","ror","rspec","rspec-rails","ruby","ruby-on-rails"],"latest_commit_sha":null,"homepage":"https://fierce-fortress-83892.herokuapp.com/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/williamscch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-14T14:39:22.000Z","updated_at":"2022-12-17T08:32:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"c9c6f4f7-3923-4e11-abd7-da7bb8acd147","html_url":"https://github.com/williamscch/budget_rails_app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"microverseinc/readme-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamscch%2Fbudget_rails_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamscch%2Fbudget_rails_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamscch%2Fbudget_rails_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williamscch%2Fbudget_rails_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/williamscch","download_url":"https://codeload.github.com/williamscch/budget_rails_app/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252592945,"owners_count":21773365,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["capybara","css","erb","mvc","mvc-architecture","postgresql","rails","ror","rspec","rspec-rails","ruby","ruby-on-rails"],"created_at":"2024-11-13T15:27:04.788Z","updated_at":"2025-10-04T09:26:47.960Z","avatar_url":"https://github.com/williamscch.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Budget Rails Web App\n\n\u003e Mobile web application where you can manage your budget: you have a list of transactions associated with a category, so that you can see how much money you spent and on what. The RoR application allows the user to:\n- [x] Register and log in, so that the data is private to them.\n- [x] Introduce new transactions associated with a category.\n- [x] See the money spent on each category.\n\nThe result should look similar to the following data model:\n\n\u003cimg width=\"374\" alt=\"erd_diagram\" src=\"https://user-images.githubusercontent.com/98527559/188287544-68d6fb5b-a265-4001-b1ac-3dc74393d720.png\"\u003e\n\n## Objectives 🔖\n- [x] Use ruby gems as software packages system.\n- [x] Install Ruby on Rails framework.\n- [x] Understand Rails RESTful design and router.\n- [x] Use controllers to handle requests and render empty views.\n- [x] Use params from browser request in a safe way.\n- [x] Use preprocessed html file with embedded Ruby code.\n- [x] Use layouts and templates for shared content.\n- [x] Use database migration files to maintain database schema.\n- [x] Use validations for models.\n- [x] Secure app from n+1 problems.\n- [x] Understand what ORM is.\n- [x] Write SQL queries with ActiveRecord.\n- [x] Set up associations between models.\n- [x] Build a webapp that requires the user to log in.\n- [x] Use devise gem for authentication.\n- [x] Limit access to webapp resources based on authorization rules.\n- [x] Analyze in writing why you have made a coding choice using one structure over another.\n\n## Interface Preview\n\n![App Screenshot](./screenshots/ss1.png)\n![App Screenshot](./screenshots/ss2.png)\n![App Screenshot](./screenshots/ss3.png)\n![App Screenshot](./screenshots/ss4.png)\n![App Screenshot](./screenshots/ss5.png)\n![App Screenshot](./screenshots/ss6.png)\n![App Screenshot](./screenshots/ss7.png)\n![App Screenshot](./screenshots/ss8.png)\n\n## Project Documentation 📄\n\n- [x] Here is the presentation video [link]()👈\n- [x] Here is the deployed app in [Heroku]()👈\n\n## Built With 🛠️\n\n- [x] Programming Language: [Ruby](https://www.ruby-lang.org/en/)\n- [x] Framework: [Ruby on Rails](https://rubyonrails.org/)\n- [x] Linter: [Rubocop](https://rubocop.org/)\n- [x] Code Editor: [VS Code](https://code.visualstudio.com/)\n- [x] Testing Libraries: [RSpec](https://github.com/rspec/rspec-rails), [Capybara](https://github.com/teamcapybara/capybara)\n\n## Getting Started\n\nTo get a local copy up and running follow these simple steps.\n\n### Prerequisites\n\n- [x] A web browser like Google Chrome.\n- [x] A code editor like Visual Studio Code with Git and Ruby.\n\nYou can check if Git is installed by running the following command in the terminal.\n```\n$ git --version\n```\n\nLikewise for Ruby installation.\n```\n$ ruby --version \u0026\u0026 irb\n```\n\nTo install rails, in the terminal kindly run this command\n```\n$ gem install rails\n```\n\n### Setup\n\nClone the repository using the GitHub link provided below.\n\n### Install\n\nIn the terminal, go to your file directory and run this command.\n\n```\n$ git clone git@github.com:mavericks-db/BudgetOnRails.git\n```\n\n### Usage\n\nKindly modify the files as needed.\n\n### Run tests\n\nTo install rspec, in the terminal kindly run this command\n\n```\n$ gem install rspec\n```\n\nTo run tests, please run this command\n```\n$ rspec ./spec/#{filename}_spec.rb\n```\n\n## Author\n\n👤 **Williams Colmenares**\n- GitHub: [@williamscch](https://github.com/williamscch)\n- Twitter: [@wdavidcch](https://twitter.com/wdavidcch)\n- LinkedIn: [Williams Colmenares on LinkedIn](https://www.linkedin.com/in/williamscolmenaresch/)\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](https://github.com/mavericks-db/BudgetOnRails/issues).\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n\n- [Microverse](https://www.microverse.org/)\n- Code Reviewers\n- Original design idea by [Gregoire Vella on Behance.](https://www.behance.net/gregoirevella)\n\nThe [Creative Commons license of the design](https://creativecommons.org/licenses/by-nc/4.0/) requires that you give appropriate credit to the author. Therefore, you must do it in the README of your project.\n\n## 📝 License\n\nThis project is [MIT](./MIT.md) licensed.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamscch%2Fbudget_rails_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilliamscch%2Fbudget_rails_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliamscch%2Fbudget_rails_app/lists"}