Skip to content

Update all Bundler dependencies (2025-08-11)

5376255
Select commit
Loading
Failed to load commit list.
Open

[ruby] Update all Bundler dependencies (2025-08-11) #277

Update all Bundler dependencies (2025-08-11)
5376255
Select commit
Loading
Failed to load commit list.
Cirrus CI / rubocop failed Aug 11, 2025 in 41s

Task Summary

Instruction lint failed in 00:02

Details

⚠️ Not enough compute credits to prioritize tasks!

✅ 00:00 clone
✅ 00:12 os_setup
✅ 00:01 rbenv_setup
✅ 00:06 rbenv
✅ 00:01 bundle
✅ 00:14 install
❌ 00:02 lint

source ~/.bashrc
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
export PATH="/root/.rbenv/shims:${PATH}"
export RBENV_SHELL=bash
source '/root/.rbenv/completions/rbenv.bash'
_rbenv() {
  COMPREPLY=()
  local word="${COMP_WORDS[COMP_CWORD]}"

  if [ "$COMP_CWORD" -eq 1 ]; then
    COMPREPLY=( $(compgen -W "$(rbenv commands)" -- "$word") )
  else
    local words=("${COMP_WORDS[@]}")
    unset "words[0]"
    unset "words[$COMP_CWORD]"
    local completions=$(rbenv completions "${words[@]}")
    COMPREPLY=( $(compgen -W "$completions" -- "$word") )
  fi
}

complete -F _rbenv rbenv
command rbenv rehash 2>/dev/null
rbenv() {
  local command
  command="${1:-}"
  if [ "$#" -gt 0 ]; then
    shift
  fi

  case "$command" in
  rehash|shell)
    eval "$(rbenv "sh-$command" "$@")";;
  *)
    command rbenv "$command" "$@";;
  esac
}
bundle exec rubocop
Inspecting 65 files
....................C............................................

Offenses:

controllers/site/public/connect_controller.rb:9:42: C: [Correctable] Style/RedundantParentheses: Don't use parentheses around a method call.
					get "/#{provider[:path]}/callback", ( ...
                                         ^

65 files inspected, 1 offense detected, 1 offense autocorrectable