Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .cursor/rules/commit-message.mdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
description: Commit message rule
alwaysApply: false
---
# Commit Message Guidelines

Write commit messages as a single line, max 72 characters.

## Format
```
<type>: <brief description>
```

## Types
- `feat` - new feature
- `fix` - bug fix
- `refactor` - code restructuring
- `docs` - documentation
- `test` - tests
- `chore` - maintenance

## Examples
- `feat: add session replay batching`
- `fix: resolve memory leak in worker pool`
- `refactor: simplify event queue logic`

## Rules
- Use imperative mood ("add" not "added")
- No period at the end
- Lowercase after the colon
- Be specific but brief
4 changes: 3 additions & 1 deletion e2e/ruby/rails/api-only/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@ group :development do
# gem "spring"
end

gem 'highlight_io', path: '../../../../sdk/highlight-ruby/highlight'
# LaunchDarkly SDK and Observability Plugin
gem 'launchdarkly-server-sdk', '~> 8.0'
gem 'launchdarkly-observability', path: '../../../../sdk/@launchdarkly/observability-ruby'
Loading
Loading