mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Refactor crew upload to break out binary hash generation. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update rubygems on ruby install Signed-off-by: Satadru Pramanik <satadru@gmail.com> * formatting Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust rubygems... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update rubygems from ruby postinstall. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
19 lines
405 B
Ruby
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.0-#{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
|