mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Update create_gem_packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add default gems package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add default gems to core. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle gem names with underscores and dashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Try to make gem reinstalls faster. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update awscli. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust early gem install exit logic. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust default packages script. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Gem install refactoring... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Refactor gem compile. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix create_gem_packages description. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Work around matrix removal breaking crew. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
27 lines
688 B
Ruby
27 lines
688 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_pp < RUBY
|
|
description 'Provides a prettyprinter for ruby objects.'
|
|
homepage 'https://github.com/ruby/pp'
|
|
version "0.5.0-#{CREW_RUBY_VER}"
|
|
license 'Ruby'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_base64' # R
|
|
depends_on 'ruby_bigdecimal' # R
|
|
depends_on 'ruby_concurrent_ruby' # R
|
|
depends_on 'ruby_connection_pool' # R
|
|
depends_on 'ruby_drb' # R
|
|
depends_on 'ruby_i18n' # R
|
|
depends_on 'ruby_logger' # R
|
|
depends_on 'ruby_minitest' # R
|
|
depends_on 'ruby_prettyprint' # R
|
|
depends_on 'ruby_securerandom' # R
|
|
depends_on 'ruby_tzinfo' # R
|
|
depends_on 'ruby_httparty' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|