AWS Lambdaでrubocopのテストを実行する

動機

テスト、AWS Lambdaで全example同時実行したら一番遅いexampleが終わるタイミングで全部おわるんじゃね?

なぜrubocop

テストの実行に時間かかりそうで手頃なプロジェクト、そうだrubocopだ!

結果

rubocopのテストのうち1ファイルをAWS Lambdaで流せるのを確認した。 ファイル名はイベントとして渡しているので変更すれば他のテストファイルを実行可能なはず。

次はeventの部分のファイルパスをいい感じに変えてリクエスト投げまくれば超並列実行して終わる説をためしたい。

AWS前準備

AWSのルートアカウントからIAMで普段遣いようのアカウントを発行

AWS CLI入れる https://docs.aws.amazon.com/ja_jp/cli/latest/userguide/cli-chap-welcome.html

% pip install awscli

アクセストークンはenvchainで管理しておく

$ envchain --set aws-hanachin-hanachin AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY

設定、アクセスキーは環境変数経由で渡すので無視

% ~/.local/bin/aws configure
AWS Access Key ID [None]: 
AWS Secret Access Key [None]: 
Default region name [None]: ap-northeast-1
Default output format [None]: 

λ

雑に手でポチポチして作れるの確認した

ここ参考につくっていく https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/ruby-package.html

とりあえず2.5系入れてbundle installきめる

% rbenv install -k 2.5.6
% gem install bundler
% bundle install --path vendor/bundle

eventでテスト対象のファイル名の配列を受け取ってそのままrspecコマンドに横流しするようにしてみる

require 'rubygems'

def lambda_handler(event:,context:)
  ARGV.concat(event)
  version = ">= 0.a"
  load Gem.activate_bin_path('rspec-core', 'rspec', version)
end

かためる

% zip -r function.zip *

さっきつくったところにあげる

% envchain aws-hanachin-hanachin ~/.local/bin/aws lambda update-function-code --function-name rubocop  --zip-file fileb://function.zip

以下のようなテストイベントでテストしてみる

["spec/rubocop/cop/style/when_then_spec.rb"]

なぜかこけるのでbundler/setupしてみる

require 'rubygems'
require 'bundler/setup'

def lambda_handler(event:,context:)
  ARGV.concat(event)
  version = ">= 0.a"
  load Gem.activate_bin_path('rspec-core', 'rspec', version)
end

gemspecでファイル一覧をとるときgitでファイル一覧がとれなくてエラーになってるっぽい .gitもいれちゃう

% zip -r function.zip .

それでもだめ、gitコマンドがない すごくざつに % git ls-files assets bin config lib LICENSE.txt README.md | xclip -selection c した結果でかきかえる

diff --git a/rubocop.gemspec b/rubocop.gemspec
index 0e7d02431..633555f99 100644
--- a/rubocop.gemspec
+++ b/rubocop.gemspec
@@ -16,8 +16,606 @@ Gem::Specification.new do |s|
   DESCRIPTION
 
   s.email = 'rubocop@googlegroups.com'
-  s.files = `git ls-files assets bin config lib LICENSE.txt README.md`
-            .split($RS)
+  s.files = %w(
+    LICENSE.txt
+ここ全部りゃくしました
+lib/rubocop/yaml_duplication_checker.rb
+  )
   s.bindir = 'exe'
   s.executables = ['rubocop']
   s.extra_rdoc_files = ['LICENSE.txt', 'README.md']

詰め直す

% rm function.zip
% zip -r function.zip *
% envchain aws-hanachin-hanachin ~/.local/bin/aws lambda update-function-code --function-name rubocop  --zip-file fileb://function.zip

実行してみる、長すぎ

{
  "errorMessage": "2019-08-31T18:46:30.538Z b6a6c4b4-af36-46ff-a5ec-606f37d0a9e0 Task timed out after 3.00 seconds"
}

タイムアウトを10秒に伸ばして再実行

{
  "errorMessage": "2019-08-31T18:47:46.940Z 1c3e82cf-fa3f-42f3-a0b5-71c7a47b9fd0 Task timed out after 10.01 seconds"
}

おわらず。もっとのばす。30秒。

終わった、エラー。HOMEが必要。

Failure/Error: require 'pry'

ArgumentError:
  couldn't find login name -- expanding `~'

雑に設定

% mkdir tmp/home
require 'rubygems'
require 'bundler/setup'

ENV['HOME'] = 'tmp/home'
def lambda_handler(event:,context:)
  ARGV.concat(event)
  version = ">= 0.a"
  load Gem.activate_bin_path('rspec-core', 'rspec', version)
end

むむ

NameError:
  uninitialized constant RuboCop::Cop

これわかる、.rspecが隠しファイルだからzipつくるとき含まれてないやつ。。

雑に直す

require 'rubygems'
require 'bundler/setup'

ENV['HOME'] = 'tmp/home'
def lambda_handler(event:,context:)
  ARGV << '--require'
  ARGV << 'spec_helper'
  ARGV.concat(event)
  version = ">= 0.a"
  load Gem.activate_bin_path('rspec-core', 'rspec', version)
end

さらにエラー出た

ArgumentError:
  non-absolute home

ざつになおす!!

require 'rubygems'
require 'bundler/setup'

ENV['HOME'] = '/var/task/tmp/home'
def lambda_handler(event:,context:)
  ARGV << '--require'
  ARGV << 'spec_helper'
  ARGV.concat(event)
  version = ">= 0.a"
  load Gem.activate_bin_path('rspec-core', 'rspec', version)
end

大成功

diff --git a/lambda_function.rb b/lambda_function.rb
new file mode 100644
index 000000000..5652aaab4
--- /dev/null
+++ b/lambda_function.rb
@@ -0,0 +1,11 @@
+require 'rubygems'
+require 'bundler/setup'
+
+ENV['HOME'] = '/var/task/tmp/home'
+def lambda_handler(event:,context:)
+  ARGV << '--require'
+  ARGV << 'spec_helper'
+  ARGV.concat(event)
+  version = ">= 0.a"
+  load Gem.activate_bin_path('rspec-core', 'rspec', version)
+end
\ No newline at end of file
diff --git a/rubocop.gemspec b/rubocop.gemspec
index 0e7d02431..633555f99 100644
--- a/rubocop.gemspec
+++ b/rubocop.gemspec
@@ -16,8 +16,606 @@ Gem::Specification.new do |s|
   DESCRIPTION
 
   s.email = 'rubocop@googlegroups.com'
-  s.files = `git ls-files assets bin config lib LICENSE.txt README.md`
-            .split($RS)
+  s.files = %w(
+    LICENSE.txt
+README.md
+assets/logo.png
+assets/output.html.erb
+bin/console
+bin/setup
+config/default.yml
+lib/rubocop.rb
+lib/rubocop/ast/builder.rb
+lib/rubocop/ast/node.rb
+lib/rubocop/ast/node/alias_node.rb
+lib/rubocop/ast/node/and_node.rb
+lib/rubocop/ast/node/args_node.rb
+lib/rubocop/ast/node/array_node.rb
+lib/rubocop/ast/node/block_node.rb
+lib/rubocop/ast/node/break_node.rb
+lib/rubocop/ast/node/case_node.rb
+lib/rubocop/ast/node/class_node.rb
+lib/rubocop/ast/node/def_node.rb
+lib/rubocop/ast/node/defined_node.rb
+lib/rubocop/ast/node/ensure_node.rb
+lib/rubocop/ast/node/float_node.rb
+lib/rubocop/ast/node/for_node.rb
+lib/rubocop/ast/node/hash_node.rb
+lib/rubocop/ast/node/if_node.rb
+lib/rubocop/ast/node/int_node.rb
+lib/rubocop/ast/node/keyword_splat_node.rb
+lib/rubocop/ast/node/mixin/basic_literal_node.rb
+lib/rubocop/ast/node/mixin/binary_operator_node.rb
+lib/rubocop/ast/node/mixin/collection_node.rb
+lib/rubocop/ast/node/mixin/conditional_node.rb
+lib/rubocop/ast/node/mixin/hash_element_node.rb
+lib/rubocop/ast/node/mixin/method_dispatch_node.rb
+lib/rubocop/ast/node/mixin/method_identifier_predicates.rb
+lib/rubocop/ast/node/mixin/modifier_node.rb
+lib/rubocop/ast/node/mixin/numeric_node.rb
+lib/rubocop/ast/node/mixin/parameterized_node.rb
+lib/rubocop/ast/node/mixin/predicate_operator_node.rb
+lib/rubocop/ast/node/module_node.rb
+lib/rubocop/ast/node/or_node.rb
+lib/rubocop/ast/node/pair_node.rb
+lib/rubocop/ast/node/range_node.rb
+lib/rubocop/ast/node/regexp_node.rb
+lib/rubocop/ast/node/resbody_node.rb
+lib/rubocop/ast/node/retry_node.rb
+lib/rubocop/ast/node/self_class_node.rb
+lib/rubocop/ast/node/send_node.rb
+lib/rubocop/ast/node/str_node.rb
+lib/rubocop/ast/node/super_node.rb
+lib/rubocop/ast/node/symbol_node.rb
+lib/rubocop/ast/node/until_node.rb
+lib/rubocop/ast/node/when_node.rb
+lib/rubocop/ast/node/while_node.rb
+lib/rubocop/ast/node/yield_node.rb
+lib/rubocop/ast/sexp.rb
+lib/rubocop/ast/traversal.rb
+lib/rubocop/cached_data.rb
+lib/rubocop/cli.rb
+lib/rubocop/comment_config.rb
+lib/rubocop/config.rb
+lib/rubocop/config_loader.rb
+lib/rubocop/config_loader_resolver.rb
+lib/rubocop/config_obsoletion.rb
+lib/rubocop/config_store.rb
+lib/rubocop/config_validator.rb
+lib/rubocop/cop/autocorrect_logic.rb
+lib/rubocop/cop/badge.rb
+lib/rubocop/cop/bundler/duplicated_gem.rb
+lib/rubocop/cop/bundler/gem_comment.rb
+lib/rubocop/cop/bundler/insecure_protocol_source.rb
+lib/rubocop/cop/bundler/ordered_gems.rb
+lib/rubocop/cop/commissioner.rb
+lib/rubocop/cop/cop.rb
+lib/rubocop/cop/corrector.rb
+lib/rubocop/cop/correctors/alignment_corrector.rb
+lib/rubocop/cop/correctors/condition_corrector.rb
+lib/rubocop/cop/correctors/each_to_for_corrector.rb
+lib/rubocop/cop/correctors/empty_line_corrector.rb
+lib/rubocop/cop/correctors/for_to_each_corrector.rb
+lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb
+lib/rubocop/cop/correctors/line_break_corrector.rb
+lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb
+lib/rubocop/cop/correctors/ordered_gem_corrector.rb
+lib/rubocop/cop/correctors/parentheses_corrector.rb
+lib/rubocop/cop/correctors/percent_literal_corrector.rb
+lib/rubocop/cop/correctors/punctuation_corrector.rb
+lib/rubocop/cop/correctors/space_corrector.rb
+lib/rubocop/cop/correctors/string_literal_corrector.rb
+lib/rubocop/cop/correctors/unused_arg_corrector.rb
+lib/rubocop/cop/force.rb
+lib/rubocop/cop/gemspec/duplicated_assignment.rb
+lib/rubocop/cop/gemspec/ordered_dependencies.rb
+lib/rubocop/cop/gemspec/required_ruby_version.rb
+lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb
+lib/rubocop/cop/generator.rb
+lib/rubocop/cop/generator/configuration_injector.rb
+lib/rubocop/cop/generator/require_file_injector.rb
+lib/rubocop/cop/ignored_node.rb
+lib/rubocop/cop/internal_affairs.rb
+lib/rubocop/cop/internal_affairs/node_destructuring.rb
+lib/rubocop/cop/internal_affairs/node_type_predicate.rb
+lib/rubocop/cop/internal_affairs/offense_location_keyword.rb
+lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
+lib/rubocop/cop/internal_affairs/redundant_message_argument.rb
+lib/rubocop/cop/internal_affairs/useless_message_assertion.rb
+lib/rubocop/cop/layout/access_modifier_indentation.rb
+lib/rubocop/cop/layout/align_arguments.rb
+lib/rubocop/cop/layout/align_array.rb
+lib/rubocop/cop/layout/align_hash.rb
+lib/rubocop/cop/layout/align_parameters.rb
+lib/rubocop/cop/layout/block_alignment.rb
+lib/rubocop/cop/layout/block_end_newline.rb
+lib/rubocop/cop/layout/case_indentation.rb
+lib/rubocop/cop/layout/class_structure.rb
+lib/rubocop/cop/layout/closing_heredoc_indentation.rb
+lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
+lib/rubocop/cop/layout/comment_indentation.rb
+lib/rubocop/cop/layout/condition_position.rb
+lib/rubocop/cop/layout/def_end_alignment.rb
+lib/rubocop/cop/layout/dot_position.rb
+lib/rubocop/cop/layout/else_alignment.rb
+lib/rubocop/cop/layout/empty_comment.rb
+lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
+lib/rubocop/cop/layout/empty_line_after_magic_comment.rb
+lib/rubocop/cop/layout/empty_line_between_defs.rb
+lib/rubocop/cop/layout/empty_lines.rb
+lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
+lib/rubocop/cop/layout/empty_lines_around_arguments.rb
+lib/rubocop/cop/layout/empty_lines_around_begin_body.rb
+lib/rubocop/cop/layout/empty_lines_around_block_body.rb
+lib/rubocop/cop/layout/empty_lines_around_class_body.rb
+lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb
+lib/rubocop/cop/layout/empty_lines_around_method_body.rb
+lib/rubocop/cop/layout/empty_lines_around_module_body.rb
+lib/rubocop/cop/layout/end_alignment.rb
+lib/rubocop/cop/layout/end_of_line.rb
+lib/rubocop/cop/layout/extra_spacing.rb
+lib/rubocop/cop/layout/first_array_element_line_break.rb
+lib/rubocop/cop/layout/first_hash_element_line_break.rb
+lib/rubocop/cop/layout/first_method_argument_line_break.rb
+lib/rubocop/cop/layout/first_method_parameter_line_break.rb
+lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
+lib/rubocop/cop/layout/indent_assignment.rb
+lib/rubocop/cop/layout/indent_first_argument.rb
+lib/rubocop/cop/layout/indent_first_array_element.rb
+lib/rubocop/cop/layout/indent_first_hash_element.rb
+lib/rubocop/cop/layout/indent_first_parameter.rb
+lib/rubocop/cop/layout/indent_heredoc.rb
+lib/rubocop/cop/layout/indentation_consistency.rb
+lib/rubocop/cop/layout/indentation_width.rb
+lib/rubocop/cop/layout/initial_indentation.rb
+lib/rubocop/cop/layout/leading_blank_lines.rb
+lib/rubocop/cop/layout/leading_comment_space.rb
+lib/rubocop/cop/layout/multiline_array_brace_layout.rb
+lib/rubocop/cop/layout/multiline_array_line_breaks.rb
+lib/rubocop/cop/layout/multiline_assignment_layout.rb
+lib/rubocop/cop/layout/multiline_block_layout.rb
+lib/rubocop/cop/layout/multiline_hash_brace_layout.rb
+lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
+lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb
+lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb
+lib/rubocop/cop/layout/multiline_method_call_indentation.rb
+lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb
+lib/rubocop/cop/layout/multiline_operation_indentation.rb
+lib/rubocop/cop/layout/rescue_ensure_alignment.rb
+lib/rubocop/cop/layout/space_after_colon.rb
+lib/rubocop/cop/layout/space_after_comma.rb
+lib/rubocop/cop/layout/space_after_method_name.rb
+lib/rubocop/cop/layout/space_after_not.rb
+lib/rubocop/cop/layout/space_after_semicolon.rb
+lib/rubocop/cop/layout/space_around_block_parameters.rb
+lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb
+lib/rubocop/cop/layout/space_around_keyword.rb
+lib/rubocop/cop/layout/space_around_operators.rb
+lib/rubocop/cop/layout/space_before_block_braces.rb
+lib/rubocop/cop/layout/space_before_comma.rb
+lib/rubocop/cop/layout/space_before_comment.rb
+lib/rubocop/cop/layout/space_before_first_arg.rb
+lib/rubocop/cop/layout/space_before_semicolon.rb
+lib/rubocop/cop/layout/space_in_lambda_literal.rb
+lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb
+lib/rubocop/cop/layout/space_inside_array_percent_literal.rb
+lib/rubocop/cop/layout/space_inside_block_braces.rb
+lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb
+lib/rubocop/cop/layout/space_inside_parens.rb
+lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb
+lib/rubocop/cop/layout/space_inside_range_literal.rb
+lib/rubocop/cop/layout/space_inside_reference_brackets.rb
+lib/rubocop/cop/layout/space_inside_string_interpolation.rb
+lib/rubocop/cop/layout/tab.rb
+lib/rubocop/cop/layout/trailing_blank_lines.rb
+lib/rubocop/cop/layout/trailing_whitespace.rb
+lib/rubocop/cop/lint/ambiguous_block_association.rb
+lib/rubocop/cop/lint/ambiguous_operator.rb
+lib/rubocop/cop/lint/ambiguous_regexp_literal.rb
+lib/rubocop/cop/lint/assignment_in_condition.rb
+lib/rubocop/cop/lint/big_decimal_new.rb
+lib/rubocop/cop/lint/boolean_symbol.rb
+lib/rubocop/cop/lint/circular_argument_reference.rb
+lib/rubocop/cop/lint/debugger.rb
+lib/rubocop/cop/lint/deprecated_class_methods.rb
+lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb
+lib/rubocop/cop/lint/duplicate_case_condition.rb
+lib/rubocop/cop/lint/duplicate_methods.rb
+lib/rubocop/cop/lint/duplicated_key.rb
+lib/rubocop/cop/lint/each_with_object_argument.rb
+lib/rubocop/cop/lint/else_layout.rb
+lib/rubocop/cop/lint/empty_ensure.rb
+lib/rubocop/cop/lint/empty_expression.rb
+lib/rubocop/cop/lint/empty_interpolation.rb
+lib/rubocop/cop/lint/empty_when.rb
+lib/rubocop/cop/lint/end_in_method.rb
+lib/rubocop/cop/lint/ensure_return.rb
+lib/rubocop/cop/lint/erb_new_arguments.rb
+lib/rubocop/cop/lint/flip_flop.rb
+lib/rubocop/cop/lint/float_out_of_range.rb
+lib/rubocop/cop/lint/format_parameter_mismatch.rb
+lib/rubocop/cop/lint/handle_exceptions.rb
+lib/rubocop/cop/lint/heredoc_method_call_position.rb
+lib/rubocop/cop/lint/implicit_string_concatenation.rb
+lib/rubocop/cop/lint/ineffective_access_modifier.rb
+lib/rubocop/cop/lint/inherit_exception.rb
+lib/rubocop/cop/lint/interpolation_check.rb
+lib/rubocop/cop/lint/literal_as_condition.rb
+lib/rubocop/cop/lint/literal_in_interpolation.rb
+lib/rubocop/cop/lint/loop.rb
+lib/rubocop/cop/lint/missing_cop_enable_directive.rb
+lib/rubocop/cop/lint/multiple_compare.rb
+lib/rubocop/cop/lint/nested_method_definition.rb
+lib/rubocop/cop/lint/nested_percent_literal.rb
+lib/rubocop/cop/lint/next_without_accumulator.rb
+lib/rubocop/cop/lint/non_local_exit_from_iterator.rb
+lib/rubocop/cop/lint/number_conversion.rb
+lib/rubocop/cop/lint/ordered_magic_comments.rb
+lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb
+lib/rubocop/cop/lint/percent_string_array.rb
+lib/rubocop/cop/lint/percent_symbol_array.rb
+lib/rubocop/cop/lint/rand_one.rb
+lib/rubocop/cop/lint/redundant_with_index.rb
+lib/rubocop/cop/lint/redundant_with_object.rb
+lib/rubocop/cop/lint/regexp_as_condition.rb
+lib/rubocop/cop/lint/require_parentheses.rb
+lib/rubocop/cop/lint/rescue_exception.rb
+lib/rubocop/cop/lint/rescue_type.rb
+lib/rubocop/cop/lint/return_in_void_context.rb
+lib/rubocop/cop/lint/safe_navigation_chain.rb
+lib/rubocop/cop/lint/safe_navigation_consistency.rb
+lib/rubocop/cop/lint/safe_navigation_with_empty.rb
+lib/rubocop/cop/lint/script_permission.rb
+lib/rubocop/cop/lint/send_with_mixin_argument.rb
+lib/rubocop/cop/lint/shadowed_argument.rb
+lib/rubocop/cop/lint/shadowed_exception.rb
+lib/rubocop/cop/lint/shadowing_outer_local_variable.rb
+lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
+lib/rubocop/cop/lint/syntax.rb
+lib/rubocop/cop/lint/to_json.rb
+lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb
+lib/rubocop/cop/lint/unified_integer.rb
+lib/rubocop/cop/lint/unneeded_cop_disable_directive.rb
+lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb
+lib/rubocop/cop/lint/unneeded_require_statement.rb
+lib/rubocop/cop/lint/unneeded_splat_expansion.rb
+lib/rubocop/cop/lint/unreachable_code.rb
+lib/rubocop/cop/lint/unused_block_argument.rb
+lib/rubocop/cop/lint/unused_method_argument.rb
+lib/rubocop/cop/lint/uri_escape_unescape.rb
+lib/rubocop/cop/lint/uri_regexp.rb
+lib/rubocop/cop/lint/useless_access_modifier.rb
+lib/rubocop/cop/lint/useless_assignment.rb
+lib/rubocop/cop/lint/useless_comparison.rb
+lib/rubocop/cop/lint/useless_else_without_rescue.rb
+lib/rubocop/cop/lint/useless_setter_call.rb
+lib/rubocop/cop/lint/void.rb
+lib/rubocop/cop/message_annotator.rb
+lib/rubocop/cop/metrics/abc_size.rb
+lib/rubocop/cop/metrics/block_length.rb
+lib/rubocop/cop/metrics/block_nesting.rb
+lib/rubocop/cop/metrics/class_length.rb
+lib/rubocop/cop/metrics/cyclomatic_complexity.rb
+lib/rubocop/cop/metrics/line_length.rb
+lib/rubocop/cop/metrics/method_length.rb
+lib/rubocop/cop/metrics/module_length.rb
+lib/rubocop/cop/metrics/parameter_lists.rb
+lib/rubocop/cop/metrics/perceived_complexity.rb
+lib/rubocop/cop/metrics/utils/abc_size_calculator.rb
+lib/rubocop/cop/mixin/alignment.rb
+lib/rubocop/cop/mixin/annotation_comment.rb
+lib/rubocop/cop/mixin/array_min_size.rb
+lib/rubocop/cop/mixin/array_syntax.rb
+lib/rubocop/cop/mixin/check_assignment.rb
+lib/rubocop/cop/mixin/check_line_breakable.rb
+lib/rubocop/cop/mixin/classish_length.rb
+lib/rubocop/cop/mixin/code_length.rb
+lib/rubocop/cop/mixin/configurable_enforced_style.rb
+lib/rubocop/cop/mixin/configurable_formatting.rb
+lib/rubocop/cop/mixin/configurable_max.rb
+lib/rubocop/cop/mixin/configurable_naming.rb
+lib/rubocop/cop/mixin/configurable_numbering.rb
+lib/rubocop/cop/mixin/def_node.rb
+lib/rubocop/cop/mixin/documentation_comment.rb
+lib/rubocop/cop/mixin/duplication.rb
+lib/rubocop/cop/mixin/empty_lines_around_body.rb
+lib/rubocop/cop/mixin/empty_parameter.rb
+lib/rubocop/cop/mixin/end_keyword_alignment.rb
+lib/rubocop/cop/mixin/enforce_superclass.rb
+lib/rubocop/cop/mixin/first_element_line_break.rb
+lib/rubocop/cop/mixin/frozen_string_literal.rb
+lib/rubocop/cop/mixin/hash_alignment.rb
+lib/rubocop/cop/mixin/heredoc.rb
+lib/rubocop/cop/mixin/ignored_methods.rb
+lib/rubocop/cop/mixin/ignored_pattern.rb
+lib/rubocop/cop/mixin/integer_node.rb
+lib/rubocop/cop/mixin/interpolation.rb
+lib/rubocop/cop/mixin/match_range.rb
+lib/rubocop/cop/mixin/method_complexity.rb
+lib/rubocop/cop/mixin/method_preference.rb
+lib/rubocop/cop/mixin/min_body_length.rb
+lib/rubocop/cop/mixin/multiline_element_indentation.rb
+lib/rubocop/cop/mixin/multiline_element_line_breaks.rb
+lib/rubocop/cop/mixin/multiline_expression_indentation.rb
+lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb
+lib/rubocop/cop/mixin/negative_conditional.rb
+lib/rubocop/cop/mixin/nil_methods.rb
+lib/rubocop/cop/mixin/on_normal_if_unless.rb
+lib/rubocop/cop/mixin/ordered_gem_node.rb
+lib/rubocop/cop/mixin/parentheses.rb
+lib/rubocop/cop/mixin/parser_diagnostic.rb
+lib/rubocop/cop/mixin/percent_array.rb
+lib/rubocop/cop/mixin/percent_literal.rb
+lib/rubocop/cop/mixin/preceding_following_alignment.rb
+lib/rubocop/cop/mixin/preferred_delimiters.rb
+lib/rubocop/cop/mixin/range_help.rb
+lib/rubocop/cop/mixin/rescue_node.rb
+lib/rubocop/cop/mixin/safe_assignment.rb
+lib/rubocop/cop/mixin/safe_mode.rb
+lib/rubocop/cop/mixin/space_after_punctuation.rb
+lib/rubocop/cop/mixin/space_before_punctuation.rb
+lib/rubocop/cop/mixin/statement_modifier.rb
+lib/rubocop/cop/mixin/string_help.rb
+lib/rubocop/cop/mixin/string_literals_help.rb
+lib/rubocop/cop/mixin/surrounding_space.rb
+lib/rubocop/cop/mixin/target_ruby_version.rb
+lib/rubocop/cop/mixin/too_many_lines.rb
+lib/rubocop/cop/mixin/trailing_body.rb
+lib/rubocop/cop/mixin/trailing_comma.rb
+lib/rubocop/cop/mixin/uncommunicative_name.rb
+lib/rubocop/cop/mixin/unused_argument.rb
+lib/rubocop/cop/naming/accessor_method_name.rb
+lib/rubocop/cop/naming/ascii_identifiers.rb
+lib/rubocop/cop/naming/binary_operator_parameter_name.rb
+lib/rubocop/cop/naming/class_and_module_camel_case.rb
+lib/rubocop/cop/naming/constant_name.rb
+lib/rubocop/cop/naming/file_name.rb
+lib/rubocop/cop/naming/heredoc_delimiter_case.rb
+lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
+lib/rubocop/cop/naming/memoized_instance_variable_name.rb
+lib/rubocop/cop/naming/method_name.rb
+lib/rubocop/cop/naming/predicate_name.rb
+lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb
+lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
+lib/rubocop/cop/naming/uncommunicative_method_param_name.rb
+lib/rubocop/cop/naming/variable_name.rb
+lib/rubocop/cop/naming/variable_number.rb
+lib/rubocop/cop/offense.rb
+lib/rubocop/cop/registry.rb
+lib/rubocop/cop/security/eval.rb
+lib/rubocop/cop/security/json_load.rb
+lib/rubocop/cop/security/marshal_load.rb
+lib/rubocop/cop/security/open.rb
+lib/rubocop/cop/security/yaml_load.rb
+lib/rubocop/cop/severity.rb
+lib/rubocop/cop/style/access_modifier_declarations.rb
+lib/rubocop/cop/style/alias.rb
+lib/rubocop/cop/style/and_or.rb
+lib/rubocop/cop/style/array_join.rb
+lib/rubocop/cop/style/ascii_comments.rb
+lib/rubocop/cop/style/attr.rb
+lib/rubocop/cop/style/auto_resource_cleanup.rb
+lib/rubocop/cop/style/bare_percent_literals.rb
+lib/rubocop/cop/style/begin_block.rb
+lib/rubocop/cop/style/block_comments.rb
+lib/rubocop/cop/style/block_delimiters.rb
+lib/rubocop/cop/style/braces_around_hash_parameters.rb
+lib/rubocop/cop/style/case_equality.rb
+lib/rubocop/cop/style/character_literal.rb
+lib/rubocop/cop/style/class_and_module_children.rb
+lib/rubocop/cop/style/class_check.rb
+lib/rubocop/cop/style/class_methods.rb
+lib/rubocop/cop/style/class_vars.rb
+lib/rubocop/cop/style/collection_methods.rb
+lib/rubocop/cop/style/colon_method_call.rb
+lib/rubocop/cop/style/colon_method_definition.rb
+lib/rubocop/cop/style/command_literal.rb
+lib/rubocop/cop/style/comment_annotation.rb
+lib/rubocop/cop/style/commented_keyword.rb
+lib/rubocop/cop/style/conditional_assignment.rb
+lib/rubocop/cop/style/constant_visibility.rb
+lib/rubocop/cop/style/copyright.rb
+lib/rubocop/cop/style/date_time.rb
+lib/rubocop/cop/style/def_with_parentheses.rb
+lib/rubocop/cop/style/dir.rb
+lib/rubocop/cop/style/documentation.rb
+lib/rubocop/cop/style/documentation_method.rb
+lib/rubocop/cop/style/double_cop_disable_directive.rb
+lib/rubocop/cop/style/double_negation.rb
+lib/rubocop/cop/style/each_for_simple_loop.rb
+lib/rubocop/cop/style/each_with_object.rb
+lib/rubocop/cop/style/empty_block_parameter.rb
+lib/rubocop/cop/style/empty_case_condition.rb
+lib/rubocop/cop/style/empty_else.rb
+lib/rubocop/cop/style/empty_lambda_parameter.rb
+lib/rubocop/cop/style/empty_literal.rb
+lib/rubocop/cop/style/empty_method.rb
+lib/rubocop/cop/style/encoding.rb
+lib/rubocop/cop/style/end_block.rb
+lib/rubocop/cop/style/eval_with_location.rb
+lib/rubocop/cop/style/even_odd.rb
+lib/rubocop/cop/style/expand_path_arguments.rb
+lib/rubocop/cop/style/float_division.rb
+lib/rubocop/cop/style/for.rb
+lib/rubocop/cop/style/format_string.rb
+lib/rubocop/cop/style/format_string_token.rb
+lib/rubocop/cop/style/frozen_string_literal_comment.rb
+lib/rubocop/cop/style/global_vars.rb
+lib/rubocop/cop/style/guard_clause.rb
+lib/rubocop/cop/style/hash_syntax.rb
+lib/rubocop/cop/style/identical_conditional_branches.rb
+lib/rubocop/cop/style/if_inside_else.rb
+lib/rubocop/cop/style/if_unless_modifier.rb
+lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb
+lib/rubocop/cop/style/if_with_semicolon.rb
+lib/rubocop/cop/style/implicit_runtime_error.rb
+lib/rubocop/cop/style/infinite_loop.rb
+lib/rubocop/cop/style/inline_comment.rb
+lib/rubocop/cop/style/inverse_methods.rb
+lib/rubocop/cop/style/ip_addresses.rb
+lib/rubocop/cop/style/lambda.rb
+lib/rubocop/cop/style/lambda_call.rb
+lib/rubocop/cop/style/line_end_concatenation.rb
+lib/rubocop/cop/style/method_call_with_args_parentheses.rb
+lib/rubocop/cop/style/method_call_without_args_parentheses.rb
+lib/rubocop/cop/style/method_called_on_do_end_block.rb
+lib/rubocop/cop/style/method_def_parentheses.rb
+lib/rubocop/cop/style/method_missing_super.rb
+lib/rubocop/cop/style/min_max.rb
+lib/rubocop/cop/style/missing_else.rb
+lib/rubocop/cop/style/missing_respond_to_missing.rb
+lib/rubocop/cop/style/mixin_grouping.rb
+lib/rubocop/cop/style/mixin_usage.rb
+lib/rubocop/cop/style/module_function.rb
+lib/rubocop/cop/style/multiline_block_chain.rb
+lib/rubocop/cop/style/multiline_if_modifier.rb
+lib/rubocop/cop/style/multiline_if_then.rb
+lib/rubocop/cop/style/multiline_memoization.rb
+lib/rubocop/cop/style/multiline_method_signature.rb
+lib/rubocop/cop/style/multiline_ternary_operator.rb
+lib/rubocop/cop/style/multiline_when_then.rb
+lib/rubocop/cop/style/multiple_comparison.rb
+lib/rubocop/cop/style/mutable_constant.rb
+lib/rubocop/cop/style/negated_if.rb
+lib/rubocop/cop/style/negated_unless.rb
+lib/rubocop/cop/style/negated_while.rb
+lib/rubocop/cop/style/nested_modifier.rb
+lib/rubocop/cop/style/nested_parenthesized_calls.rb
+lib/rubocop/cop/style/nested_ternary_operator.rb
+lib/rubocop/cop/style/next.rb
+lib/rubocop/cop/style/nil_comparison.rb
+lib/rubocop/cop/style/non_nil_check.rb
+lib/rubocop/cop/style/not.rb
+lib/rubocop/cop/style/numeric_literal_prefix.rb
+lib/rubocop/cop/style/numeric_literals.rb
+lib/rubocop/cop/style/numeric_predicate.rb
+lib/rubocop/cop/style/one_line_conditional.rb
+lib/rubocop/cop/style/option_hash.rb
+lib/rubocop/cop/style/optional_arguments.rb
+lib/rubocop/cop/style/or_assignment.rb
+lib/rubocop/cop/style/parallel_assignment.rb
+lib/rubocop/cop/style/parentheses_around_condition.rb
+lib/rubocop/cop/style/percent_literal_delimiters.rb
+lib/rubocop/cop/style/percent_q_literals.rb
+lib/rubocop/cop/style/perl_backrefs.rb
+lib/rubocop/cop/style/preferred_hash_methods.rb
+lib/rubocop/cop/style/proc.rb
+lib/rubocop/cop/style/raise_args.rb
+lib/rubocop/cop/style/random_with_offset.rb
+lib/rubocop/cop/style/redundant_begin.rb
+lib/rubocop/cop/style/redundant_conditional.rb
+lib/rubocop/cop/style/redundant_exception.rb
+lib/rubocop/cop/style/redundant_freeze.rb
+lib/rubocop/cop/style/redundant_parentheses.rb
+lib/rubocop/cop/style/redundant_return.rb
+lib/rubocop/cop/style/redundant_self.rb
+lib/rubocop/cop/style/redundant_sort_by.rb
+lib/rubocop/cop/style/regexp_literal.rb
+lib/rubocop/cop/style/rescue_modifier.rb
+lib/rubocop/cop/style/rescue_standard_error.rb
+lib/rubocop/cop/style/return_nil.rb
+lib/rubocop/cop/style/safe_navigation.rb
+lib/rubocop/cop/style/sample.rb
+lib/rubocop/cop/style/self_assignment.rb
+lib/rubocop/cop/style/semicolon.rb
+lib/rubocop/cop/style/send.rb
+lib/rubocop/cop/style/signal_exception.rb
+lib/rubocop/cop/style/single_line_block_params.rb
+lib/rubocop/cop/style/single_line_methods.rb
+lib/rubocop/cop/style/special_global_vars.rb
+lib/rubocop/cop/style/stabby_lambda_parentheses.rb
+lib/rubocop/cop/style/stderr_puts.rb
+lib/rubocop/cop/style/string_hash_keys.rb
+lib/rubocop/cop/style/string_literals.rb
+lib/rubocop/cop/style/string_literals_in_interpolation.rb
+lib/rubocop/cop/style/string_methods.rb
+lib/rubocop/cop/style/strip.rb
+lib/rubocop/cop/style/struct_inheritance.rb
+lib/rubocop/cop/style/symbol_array.rb
+lib/rubocop/cop/style/symbol_literal.rb
+lib/rubocop/cop/style/symbol_proc.rb
+lib/rubocop/cop/style/ternary_parentheses.rb
+lib/rubocop/cop/style/trailing_body_on_class.rb
+lib/rubocop/cop/style/trailing_body_on_method_definition.rb
+lib/rubocop/cop/style/trailing_body_on_module.rb
+lib/rubocop/cop/style/trailing_comma_in_arguments.rb
+lib/rubocop/cop/style/trailing_comma_in_array_literal.rb
+lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb
+lib/rubocop/cop/style/trailing_method_end_statement.rb
+lib/rubocop/cop/style/trailing_underscore_variable.rb
+lib/rubocop/cop/style/trivial_accessors.rb
+lib/rubocop/cop/style/unless_else.rb
+lib/rubocop/cop/style/unneeded_capital_w.rb
+lib/rubocop/cop/style/unneeded_condition.rb
+lib/rubocop/cop/style/unneeded_interpolation.rb
+lib/rubocop/cop/style/unneeded_percent_q.rb
+lib/rubocop/cop/style/unneeded_sort.rb
+lib/rubocop/cop/style/unpack_first.rb
+lib/rubocop/cop/style/variable_interpolation.rb
+lib/rubocop/cop/style/when_then.rb
+lib/rubocop/cop/style/while_until_do.rb
+lib/rubocop/cop/style/while_until_modifier.rb
+lib/rubocop/cop/style/word_array.rb
+lib/rubocop/cop/style/yoda_condition.rb
+lib/rubocop/cop/style/zero_length_predicate.rb
+lib/rubocop/cop/team.rb
+lib/rubocop/cop/util.rb
+lib/rubocop/cop/utils/format_string.rb
+lib/rubocop/cop/variable_force.rb
+lib/rubocop/cop/variable_force/assignment.rb
+lib/rubocop/cop/variable_force/branch.rb
+lib/rubocop/cop/variable_force/branchable.rb
+lib/rubocop/cop/variable_force/reference.rb
+lib/rubocop/cop/variable_force/scope.rb
+lib/rubocop/cop/variable_force/variable.rb
+lib/rubocop/cop/variable_force/variable_table.rb
+lib/rubocop/core_ext/string.rb
+lib/rubocop/error.rb
+lib/rubocop/file_finder.rb
+lib/rubocop/formatter/auto_gen_config_formatter.rb
+lib/rubocop/formatter/base_formatter.rb
+lib/rubocop/formatter/clang_style_formatter.rb
+lib/rubocop/formatter/colorizable.rb
+lib/rubocop/formatter/disabled_config_formatter.rb
+lib/rubocop/formatter/disabled_lines_formatter.rb
+lib/rubocop/formatter/emacs_style_formatter.rb
+lib/rubocop/formatter/file_list_formatter.rb
+lib/rubocop/formatter/formatter_set.rb
+lib/rubocop/formatter/fuubar_style_formatter.rb
+lib/rubocop/formatter/html_formatter.rb
+lib/rubocop/formatter/json_formatter.rb
+lib/rubocop/formatter/offense_count_formatter.rb
+lib/rubocop/formatter/pacman_formatter.rb
+lib/rubocop/formatter/progress_formatter.rb
+lib/rubocop/formatter/quiet_formatter.rb
+lib/rubocop/formatter/simple_text_formatter.rb
+lib/rubocop/formatter/tap_formatter.rb
+lib/rubocop/formatter/text_util.rb
+lib/rubocop/formatter/worst_offenders_formatter.rb
+lib/rubocop/magic_comment.rb
+lib/rubocop/name_similarity.rb
+lib/rubocop/node_pattern.rb
+lib/rubocop/options.rb
+lib/rubocop/path_util.rb
+lib/rubocop/platform.rb
+lib/rubocop/processed_source.rb
+lib/rubocop/rake_task.rb
+lib/rubocop/remote_config.rb
+lib/rubocop/result_cache.rb
+lib/rubocop/rspec/cop_helper.rb
+lib/rubocop/rspec/expect_offense.rb
+lib/rubocop/rspec/host_environment_simulation_helper.rb
+lib/rubocop/rspec/shared_contexts.rb
+lib/rubocop/rspec/support.rb
+lib/rubocop/runner.rb
+lib/rubocop/string_interpreter.rb
+lib/rubocop/string_util.rb
+lib/rubocop/target_finder.rb
+lib/rubocop/token.rb
+lib/rubocop/version.rb
+lib/rubocop/warning.rb
+lib/rubocop/yaml_duplication_checker.rb
+  )
   s.bindir = 'exe'
   s.executables = ['rubocop']
   s.extra_rdoc_files = ['LICENSE.txt', 'README.md']
diff --git a/tmp/home/.keep b/tmp/home/.keep
new file mode 100644
index 000000000..e69de29bb

いいなと思ったらKyashでお金を下さい
20191128011151
GitHubスポンサーも受け付けています
https://github.com/sponsors/hanachin/