https://github.com/workable/dependabot-test
Repository created for testing dependabot alerts
https://github.com/workable/dependabot-test
Last synced: 6 months ago
JSON representation
Repository created for testing dependabot alerts
- Host: GitHub
- URL: https://github.com/workable/dependabot-test
- Owner: Workable
- Created: 2025-10-01T07:50:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-10-01T09:19:09.000Z (6 months ago)
- Last Synced: 2025-10-01T10:31:04.861Z (6 months ago)
- Language: Ruby
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dependabot Test Rails Application
This is a simple Rails application created for testing Dependabot functionality.
## Setup
1. Install Ruby 3.1.0 (using rbenv, rvm, or your preferred Ruby version manager)
2. Install dependencies:
```bash
bundle install
```
3. Start the Rails server:
```bash
rails server
```
4. Visit http://localhost:3000 to see the "Hello, World!" message
## Features
- Simple "Hello, World!" page
- Basic Rails 7.0 application structure
- SQLite3 database (no migrations needed for this simple app)
- Standard Rails development setup
## Routes
- `/` - Root path showing hello world
- `/hello` - Alternative hello world path
Change