mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-12 17:08:25 -05:00
* Add/update missing ruby gems. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove extra blank lines. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add ruby_rubocop_chromebrew dep for unit tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle gem names with underscores and dashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update rubocop Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add ruby_rubocop_chromebrew to packages.yaml Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
14 lines
375 B
Ruby
14 lines
375 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_parallel < RUBY
|
|
description 'Run any code in parallel Processes(> use all CPUs), Threads(> speedup blocking operations), or Ractors(> use all CPUs).'
|
|
homepage 'https://github.com/grosser/parallel'
|
|
version "1.26.3-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|