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

uclibs / treatment_database / 2d3728ec-a295-422c-bcec-9eb155075ef3

18 Apr 2025 07:16PM UTC coverage: 99.536%. Remained the same
2d3728ec-a295-422c-bcec-9eb155075ef3

push

circleci

web-flow
Bump byebug from 11.1.3 to 12.0.0 (#582)

Bumps [byebug](https://github.com/deivid-rodriguez/byebug) from 11.1.3 to 12.0.0.
- [Release notes](https://github.com/deivid-rodriguez/byebug/releases)
- [Changelog](https://github.com/deivid-rodriguez/byebug/blob/master/CHANGELOG.md)
- [Commits](https://github.com/deivid-rodriguez/byebug/compare/v11.1.3...v12.0.0)

---
updated-dependencies:
- dependency-name: byebug
  dependency-version: 12.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Janell Huyck <janell.huyck@outlook.com>

644 of 647 relevant lines covered (99.54%)

51.99 hits per line

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

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

3
# Manages user profile actions, allowing users to view and update their own profile.
4
class UsersController < ApplicationController
2✔
5
  before_action :set_user
2✔
6

7
  load_and_authorize_resource
2✔
8

9
  def show; end
2✔
10

11
  def edit; end
2✔
12

13
  def update
2✔
14
    if @user.update(user_params)
2✔
15
      redirect_to root_path, notice: 'Profile updated successfully.'
1✔
16
    else
17
      render :edit
1✔
18
    end
19
  end
20

21
  private
2✔
22

23
  def set_user
2✔
24
    @user = current_user
5✔
25
  end
26

27
  def user_params
2✔
28
    params.require(:user).permit(:display_name)
2✔
29
  end
30
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