mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05: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>
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.46.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
|