- Testing: This project uses RSpec.
- Run all tests:
bundle exec rspec - Run a single test file:
bundle exec rspec examples_spec/0.0.2.rb
- Run all tests:
- Linting: There is no linting configuration. Please adhere to the style of existing code.
- Formatting: Use 2-space indentation.
- Naming: Use
snake_casefor variables and methods. - Strings: Use double quotes for strings, especially with interpolation. Use single quotes for
requirestatements. - Methods: Use parentheses for method definitions with arguments.
- Error Handling: Not specified.
- Imports: Use
require. - Types: Not specified.
- General: Follow existing patterns in the code. Explicit
returnis preferred.