You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add DevContainer, EditorConfig, and Justfile
Introduces a comprehensive local development environment setup:
- Adds an `.editorconfig` file for consistent coding styles.
- Implements a VS Code DevContainer configuration (`.devcontainer/devcontainer.json`)
using a Ruby 3.4 image, with VS Code extensions for Ruby,
installation of 'just', and automatic bundle install.
- Creates a `Justfile` with common development tasks such as `setup`,
`console`, and `list`.
- Updates `README.md` to include a section on the new development
environment setup.
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,24 @@
6
6
7
7
Pattern for assign instance variables in controllers for use in views, etc.
8
8
9
-
## Instalation
9
+
## Installation
10
10
11
11
Add `controller_setter_pattern` to your Gemfile:
12
12
13
13
```ruby
14
14
gem "controller_setter_pattern"
15
15
```
16
16
17
+
## Development Environment
18
+
19
+
This project includes a [VS Code DevContainer](https://code.visualstudio.com/docs/remote/containers) configuration for a consistent development environment.
20
+
Open this project in a DevContainer to automatically get all dependencies and tools set up.
21
+
22
+
Common development tasks are managed using a `Justfile`. To see available commands, run:
0 commit comments