diff options
author | Keiji Yoshimi <walf443@gmail.com> | 2017-09-23 16:45:58 +0900 |
---|---|---|
committer | Keiji Yoshimi <walf443@gmail.com> | 2017-09-24 15:04:39 +0900 |
commit | dc0f057d0a34f15ae69c220d06682f35266afbc7 (patch) | |
tree | 88425eb0793643a07185ade40e5f7aee6c3a0c2d /spec/runtime | |
parent | 1b1db94e045cdf690bc93939612d17d7ee44c369 (diff) | |
download | bundler-dc0f057d0a34f15ae69c220d06682f35266afbc7.tar.gz |
improve rubocop_todo.yml
- Style/EmptyLinesAroundExceptionHandlingKeywords
- Style/SpaceAroundOperators
- Style/SpaceInsideBlockBraces
- Lint/DuplicateMethods
- Lint/Void
- Style/IfUnlessModifier
- Style/MixinGrouping
- Style/NestedParenthesizedCalls
- Style/OrAssignment
- Style/RedundantParentheses
- Style/TernaryParentheses
Diffstat (limited to 'spec/runtime')
-rw-r--r-- | spec/runtime/setup_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/setup_spec.rb b/spec/runtime/setup_spec.rb index 0ea07c7b0a..7c84388766 100644 --- a/spec/runtime/setup_spec.rb +++ b/spec/runtime/setup_spec.rb @@ -827,7 +827,7 @@ end it "should clean $LOAD_PATH properly" do gem_name = "very_simple_binary" full_gem_name = gem_name + "-1.0" - ext_dir = File.join(tmp "extenstions", full_gem_name) + ext_dir = File.join(tmp("extenstions", full_gem_name)) install_gem full_gem_name |