mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Remove self.check in python3.rb as tests were not actuallly being run * Enable Lint/ImplicitStringConcatenation cop * Enable Layout/CommentIndentation cop * Remove unnecessary configuration of Layout/IndentationStyle to EnforcedStyle: spaces, as this is already the default * Enable Layout/LeadingCommentSpace cop * Enable Layout/SpaceInsideBlockBraces cop * Enable Layout/SpaceInsideParens cop * Enable Layout/TrailingEmptyLines cop * Enable Lint/LiteralAsCondition cop * Document the current issue stopping us from enabling Style/OptionalBooleanParameter * Stop downloading our rubocop config when installing ruby_rubocop
17 lines
311 B
Ruby
17 lines
311 B
Ruby
require 'package'
|
|
require_relative 'gcr_3'
|
|
require_relative 'gcr_4'
|
|
|
|
class Gcr < Package
|
|
description Gcr_3.description
|
|
homepage Gcr_3.homepage
|
|
version "#{Gcr_3.version}+#{Gcr_4.version}"
|
|
license Gcr_3.license
|
|
compatibility Gcr_3.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'gcr_3'
|
|
depends_on 'gcr_4'
|
|
end
|