mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Fix Ruby Gem Updater script. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Keep gem_compile_needed gem updates from breaking installer. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gem versions. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * sanitize_gem_updates: Package File Update Run on linux/386 container. * Update ruby build gem version logic. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * sanitize_gem_updates: Package File Update Run on linux/amd64 container. * sanitize_gem_updates: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
17 lines
380 B
Ruby
17 lines
380 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_net_imap < RUBY
|
|
description 'Ruby client api for Internet Message Access Protocol'
|
|
homepage 'https://github.com/ruby/net-imap'
|
|
version "0.5.9-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_date' # R
|
|
depends_on 'ruby_net_protocol' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|