• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

uclibs / treatment_database / 2ed3c114-bc57-4a8f-be70-bcf6c5a1cdc2

06 May 2025 02:54PM UTC coverage: 99.536%. Remained the same
2ed3c114-bc57-4a8f-be70-bcf6c5a1cdc2

push

circleci

Janell-Huyck
Bump rubocop-rails from 2.30.3 to 2.31.0

Bumps [rubocop-rails](https://github.com/rubocop/rubocop-rails) from 2.30.3 to 2.31.0.
- [Release notes](https://github.com/rubocop/rubocop-rails/releases)
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop-rails/compare/v2.30.3...v2.31.0)

---
updated-dependencies:
- dependency-name: rubocop-rails
  dependency-version: 2.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

644 of 647 relevant lines covered (99.54%)

51.69 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/app/controllers/activity_controller.rb
1
# frozen_string_literal: true
2

3
class ActivityController < ApplicationController
1✔
4
  authorize_resource class: false
1✔
5

6
  def index
1✔
7
    @pagy, @versions = pagy(PaperTrail::Version.order(created_at: :desc), items: 50)
6✔
8
  end
9

10
  def show
1✔
11
    @version = PaperTrail::Version.find(params[:id])
2✔
12
    @changeset = @version.changeset
2✔
13
    @other_versions = PaperTrail::Version.where(item_id: @version.item_id, item_type: @version.item_type).order(created_at: :desc)
2✔
14
  end
15
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc