RSpec Rails
RSpec Rails
rspec-rails integrates RSpec with Rails, providing specialized spec types for each Rails component.
Spec Types
| Spec Type | Location | Purpose |
|---|---|---|
| Model | spec/models/ |
ActiveRecord models, validations, associations |
| Request | spec/requests/ |
HTTP requests, full controller + routing |
| System | spec/system/ |
Browser-based end-to-end tests |
| Mailer | spec/mailers/ |
Email content and delivery |
| Job | spec/jobs/ |
Background job behavior |
| View | spec/views/ |
View rendering (less common) |
| Helper | spec/helpers/ |
View helper methods |
| Routing | spec/routing/ |
Route resolution |
| Controller | spec/controllers/ |
Deprecated - use request specs |
Model Specs
More from bastos/ruby-plugin-marketplace
action-cable
This skill should be used when the user asks about "WebSockets", "Action Cable", "real-time", "channels", "broadcasting", "streams", "subscriptions", "live updates", "push notifications", "chat features", or needs guidance on implementing real-time features in Rails applications.
2design-patterns
This skill should be used when the user asks about "design patterns", "SOLID", "factory pattern", "singleton", "observer", "strategy", "decorator", "adapter", "facade", "command pattern", "builder pattern", "dependency injection", "composition", "Ruby patterns", or needs guidance on implementing design patterns in Ruby.
2minitest
This skill should be used when the user asks about "Minitest", "Rails testing", "test/", "fixtures", "ActiveSupport::TestCase", "ActionDispatch::IntegrationTest", "system tests", "functional tests", "assert", "assert_equal", "assert_difference", "test_helper", "rails test", or needs guidance on testing Rails applications with the default Minitest framework.
1action-view
This skill should be used when the user asks about "views", "ERB templates", "partials", "layouts", "render", "form_with", "form helpers", "view helpers", "link_to", "content_for", "yield", "collection rendering", "locals", "tag helpers", "asset helpers", "image_tag", "stylesheet_link_tag", or needs guidance on building Rails views and templates.
1bundler
This skill should be used when the user asks about "Bundler", "Gemfile", "Gemfile.lock", "bundle install", "bundle update", "bundle exec", "dependency management", "gem versions", "gem groups", "bundle add", "gem sources", or needs guidance on managing Ruby dependencies.
1rails-caching
Rails caching strategies including fragment caching, low-level caching with Rails.cache, cache keys, and conditional GET. Use when the user asks about caching performance or invalidation in Rails.
1