Files
chromebrew/packages/ruby_rubygems_update.rb
chromebrew-actions[bot] 3fa24641a2 updater-ruby_rubygems_update-3.7.2 — ruby_rubygems_update → 3.7.2 (#12714)
* Add unbuilt ruby_rubygems_update to updater-ruby_rubygems_update-3.7.2

* updater-ruby_rubygems_update-3.7.2: Build Run on linux/arm/v7.

* updater-ruby_rubygems_update-3.7.2: Build Run on linux/386.

* updater-ruby_rubygems_update-3.7.2: Build Run on linux/amd64.

---------

Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2025-09-10 01:02:41 +00:00

19 lines
405 B
Ruby

require 'buildsystems/ruby'
class Ruby_rubygems_update < RUBY
description 'RubyGems is a package management framework for Ruby.'
homepage 'https://github.com/rubygems/rubygems'
version "3.7.2-#{CREW_RUBY_VER}"
license 'MIT'
compatibility 'all'
source_url 'SKIP'
conflicts_ok
no_compile_needed
def postinstall
system 'update_rubygems'
system 'gem update -N --system'
end
end