mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt ruby_rubocop_ast to updater-ruby_rubocop_ast-1.48.0 * updater-ruby_rubocop_ast-1.48.0: Package File Update Run on linux/386 container. * updater-ruby_rubocop_ast-1.48.0: Package File Update Run on linux/amd64 container. * updater-ruby_rubocop_ast-1.48.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
17 lines
387 B
Ruby
17 lines
387 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_rubocop_ast < RUBY
|
|
description "Contains the classes needed by RuboCop to deal with Ruby's AST."
|
|
homepage 'https://github.com/rubocop/rubocop-ast'
|
|
version "1.48.0-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_parser' # R
|
|
depends_on 'ruby_prism' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|