{"id":28938177,"url":"https://github.com/nutcas3/simple-ci-ruby","last_synced_at":"2026-05-17T06:32:31.016Z","repository":{"id":298671955,"uuid":"1000259764","full_name":"nutcas3/simple-ci-ruby","owner":"nutcas3","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-12T08:01:46.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-22T22:07:09.784Z","etag":null,"topics":["ci-cd","ruby-on-rails","security"],"latest_commit_sha":null,"homepage":"","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/nutcas3.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,"zenodo":null}},"created_at":"2025-06-11T13:59:58.000Z","updated_at":"2025-06-12T08:03:00.000Z","dependencies_parsed_at":"2025-06-12T09:19:55.770Z","dependency_job_id":"3cd83d86-1e92-42dc-b583-37953b99c9f0","html_url":"https://github.com/nutcas3/simple-ci-ruby","commit_stats":null,"previous_names":["nutcas3/simple-ci-ruby"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nutcas3/simple-ci-ruby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nutcas3%2Fsimple-ci-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nutcas3%2Fsimple-ci-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nutcas3%2Fsimple-ci-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nutcas3%2Fsimple-ci-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nutcas3","download_url":"https://codeload.github.com/nutcas3/simple-ci-ruby/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nutcas3%2Fsimple-ci-ruby/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33129247,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T06:27:06.342Z","status":"ssl_error","status_checked_at":"2026-05-17T06:26:59.432Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["ci-cd","ruby-on-rails","security"],"created_at":"2025-06-22T22:07:09.553Z","updated_at":"2026-05-17T06:32:30.987Z","avatar_url":"https://github.com/nutcas3.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rails CI/CD Demo\n\nA modern Ruby on Rails application demonstrating CI/CD best practices, automated testing, and deployment workflows.\n\n## 🚀 Features\n\n### Application\n- Basic blog functionality with posts\n- Modern, responsive UI\n- PostgreSQL database\n- RESTful API design\n\n### Development\n- 🛠 Ruby 3.2.2 + Rails 7.1\n- 📦 Docker + Docker Compose configuration\n- 🧪 Comprehensive RSpec test suite\n- 🎨 RuboCop for code style enforcement\n\n### CI/CD Pipeline\n- 🔄 GitHub Actions workflow\n- ⚡️ Parallel test execution with Knapsack\n- 🔍 Security scanning (Brakeman, Bundler Audit)\n- 🚀 Automated deployments to Heroku\n- 👀 Preview environments for PRs\n\n## 🛠 Prerequisites\n\n- Ruby 3.2.2\n- PostgreSQL 14+\n- Docker \u0026 Docker Compose\n- Node.js 18+\n\n## 🚀 Quick Start\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/rails-cicd-demo.git\n   cd rails-cicd-demo\n   ```\n\n2. Install dependencies:\n   ```bash\n   bundle install\n   ```\n\n3. Set up the database:\n   ```bash\n   rails db:create db:migrate\n   ```\n\n4. Start the server:\n   ```bash\n   rails server\n   ```\n\n5. Visit http://localhost:3000\n\n## 🐳 Docker Setup\n\n1. Build the containers:\n   ```bash\n   docker-compose build\n   ```\n\n2. Start the services:\n   ```bash\n   docker-compose up\n   ```\n\n3. Create and migrate the database:\n   ```bash\n   docker-compose exec web rails db:setup\n   ```\n\n## 🧪 Testing\n\nRun the test suite:\n```bash\nrspec\n```\n\nRun specific tests:\n```bash\nrspec spec/models/post_spec.rb\n```\n\n## 🔄 CI/CD Pipeline\n\nThe GitHub Actions workflow includes:\n\n1. **Lint \u0026 Security**\n   - RuboCop style checking\n   - Brakeman security analysis\n   - Bundler Audit dependency checks\n\n2. **Test**\n   - Parallel test execution\n   - Coverage reporting\n\n3. **Build**\n   - Docker image building\n   - Image pushing to registry\n\n4. **Deploy**\n   - Preview environment for PRs\n   - Production deployment for main branch\n\n## 📚 Documentation\n\n- [Setup Guide](docs/setup.md)\n- [Contributing Guidelines](CONTRIBUTING.md)\n- [Deployment Guide](docs/deployment.md)\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnutcas3%2Fsimple-ci-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnutcas3%2Fsimple-ci-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnutcas3%2Fsimple-ci-ruby/lists"}