mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Reduce gem update debugging level, update ruby_parser. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gem_update: Package File Update Run on linux/386 container. * gem_update: Package File Update Run on linux/amd64 container. * gem_update: Package File Update Run on linux/arm/v7 container. * Add ruby_parser to essential packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Better prevent CREW_ESSENTIAL_PACKAGE removal and ruby gem name determination. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Gate CREW_ESSENTIAL_PACKAGE removal block behind a check for gem packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
18 lines
383 B
Ruby
18 lines
383 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_parser < RUBY
|
|
description 'A Ruby parser written in pure Ruby.'
|
|
homepage 'https://github.com/whitequark/parser'
|
|
version "3.3.10.1-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_ast' # R
|
|
depends_on 'ruby_kramdown' # R
|
|
depends_on 'ruby_racc' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|