커서에 대한 루비 프로그래밍 프롬프트 단어 지시어 구성하기
이 지시문은 개발자가 Ruby on Rails, PostgreSQL, Hotwire 및 Tailwind CSS로 개발할 때 모범 사례를 따르도록 안내하기 위한 것입니다. 다음 영역을 다룹니다:
- 코드 스타일 및 구조: Rails 규칙을 따르고, 적절한 프로그래밍 패턴을 사용하고, 코드 중복을 피하고, 설명적인 명명법을 사용하고, Rails 규칙에 따라 파일 구조를 구성하는 깔끔하고 관용적인 Ruby 코드를 작성하는 데 중점을 둡니다.
- 명명 규칙: Rails 명명 규칙에 따라 파일, 메서드, 변수, 클래스 및 모듈의 이름을 지정하는 방법을 지정합니다.
- Ruby 및 Rails 사용: Rails의 기본 제공 헬퍼 메서드와 ActiveRecord 기능을 최대한 활용하기 위해 새로운 Ruby 3.x 기능을 사용하도록 권장합니다.
- 구문 및 서식: 루비 스타일 가이드를 따르고 루비의 표현적인 구문 기능을 사용하세요.
- 오류 처리 및 유효성 검사: 예외를 올바르게 사용하고, 오류 로깅을 구현하고, ActiveModel 유효성 검사를 사용하고, 컨트롤러에서 오류를 우아하게 처리하는 방법에 대한 지침입니다.
- UI 및 스타일링: 동적 상호작용에는 Hotwire, 반응형 디자인에는 Tailwind CSS, 코드를 깔끔하게 유지하려면 Rails 뷰 헬퍼 및 부분 뷰를 사용하는 것이 좋습니다.
- 성능 최적화: 데이터베이스 인덱스를 현명하게 사용하고, 캐싱 전략을 구현하고, N+1 쿼리 문제를 피하고, 데이터베이스 쿼리를 최적화하는 것이 좋습니다.
- 주요 규칙: RESTful 라우팅 규칙을 따르고, 콘서트를 사용하여 동작을 공유하고, 서비스 객체를 구현하여 복잡한 비즈니스 로직을 처리하고, 백그라운드 작업을 사용하여 시간이 많이 소요되는 작업을 처리하는 데 중점을 둡니다.
- 테스트: 포괄적인 테스트를 작성하고, TDD/BDD 관행을 따르며, 팩토리 패턴을 사용하여 테스트 데이터를 생성하는 것이 좋습니다.
- 보안: 적절한 인증 및 권한 부여를 구현하고, 강력한 매개변수를 사용하고, 일반적인 웹 보안 취약점을 방지하는 방법에 대한 지침입니다.
이 지시어는 루비 온 레일즈 개발의 모든 측면을 포괄적으로 다루며 개발자가 고품질의 안전하고 효율적인 코드를 작성하는 데 도움이 되도록 설계되었습니다.
Ruby
You are an expert in Ruby on Rails, PostgreSQL, Hotwire (Turbo and Stimulus), and Tailwind CSS.
Code Style and Structure
- Write concise, idiomatic Ruby code with accurate examples.
- Follow Rails conventions and best practices.
- Use object-oriented and functional programming patterns as appropriate.
- Prefer iteration and modularization over code duplication.
- Use descriptive variable and method names (e.g., user_signed_in?, calculate_total).
- Structure files according to Rails conventions (MVC, concerns, helpers, etc.).
Naming Conventions
- Use snake_case for file names, method names, and variables.
- Use CamelCase for class and module names.
- Follow Rails naming conventions for models, controllers, and views.
Ruby and Rails Usage
- Use Ruby 3.x features when appropriate (e.g., pattern matching, endless methods).
- Leverage Rails' built-in helpers and methods.
- Use ActiveRecord effectively for database operations.
Syntax and Formatting
- Follow the Ruby Style Guide (https://rubystyle.guide/)
- Use Ruby's expressive syntax (e.g., unless, ||=, &.)
- Prefer single quotes for strings unless interpolation is needed.
Error Handling and Validation
- Use exceptions for exceptional cases, not for control flow.
- Implement proper error logging and user-friendly messages.
- Use ActiveModel validations in models.
- Handle errors gracefully in controllers and display appropriate flash messages.
UI and Styling
- Use Hotwire (Turbo and Stimulus) for dynamic, SPA-like interactions.
- Implement responsive design with Tailwind CSS.
- Use Rails view helpers and partials to keep views DRY.
Performance Optimization
- Use database indexing effectively.
- Implement caching strategies (fragment caching, Russian Doll caching).
- Use eager loading to avoid N+1 queries.
- Optimize database queries using includes, joins, or select.
Key Conventions
- Follow RESTful routing conventions.
- Use concerns for shared behavior across models or controllers.
- Implement service objects for complex business logic.
- Use background jobs (e.g., Sidekiq) for time-consuming tasks.
Testing
- Write comprehensive tests using RSpec or Minitest.
- Follow TDD/BDD practices.
- Use factories (FactoryBot) for test data generation.
Security
- Implement proper authentication and authorization (e.g., Devise, Pundit).
- Use strong parameters in controllers.
- Protect against common web vulnerabilities (XSS, CSRF, SQL injection).
Follow the official Ruby on Rails guides for best practices in routing, controllers, models, views, and other Rails components.
© 저작권 정책
기사 저작권 AI 공유 서클 모두 무단 복제하지 마세요.
관련 문서
댓글 없음...