mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* Add unbuilt ruby_irb to updater-ruby_irb-1.15.3 * updater-ruby_irb-1.15.3: Package File Update Run on linux/386 container. * updater-ruby_irb-1.15.3: Package File Update Run on linux/amd64 container. * updater-ruby_irb-1.15.3: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
17 lines
380 B
Ruby
17 lines
380 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_irb < RUBY
|
|
description 'Interactive Ruby command-line tool for REPL (Read Eval Print Loop).'
|
|
homepage 'https://github.com/ruby/irb'
|
|
version "1.15.3-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_rdoc' # R
|
|
depends_on 'ruby_reline' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|