Skip to content
Snippets Groups Projects
Select Git revision
  • c11a7dddb4dc87d308ffdc999b1f2f0901ef49fc
  • master default protected
  • renovate/rubygems-bootstrap-vulnerability
  • rj/semantic-logger-update
  • 3.3.1
  • tc/update-dd
  • tc/debase-gems
  • rails6
  • support/2.x
  • gemfile_update
  • v3.2.35
  • v3.2.34
  • v3.2.33
  • v3.2.32
  • v3.2.31
  • v3.2.30
  • v3.2.29
  • v3.2.28
  • v3.2.27
  • v3.2.26
  • v3.2.25
  • v3.2.24
  • v3.2.23
  • v3.2.22
  • v3.2.21
  • v3.2.20
  • v3.2.19
  • v3.2.18
  • v3.2.17
  • v3.2.16
30 results

CHANGELOG.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    To find the state of this project's repository at the time of any of these versions, check out the tags.
    gem-update.sh 327 B
    #!/bin/bash
    cd "$(dirname "$0")"
    set -ex
    docker run -it -v "$(pwd)":/app \
      -v /usr/local/bundle:/usr/local/bundle ruby:3.2 sh \
      -c "apt-get update; \
          apt-get install -y cmake build-essential; \
          cd /app; \
          gem install bundler:2.4.5; \
          bundle outdated; \
          bundle update; \
          bundle install;"