summaryrefslogtreecommitdiff
path: root/lib/bundler/match_platform.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2015-11-26 12:42:53 -0600
committerSamuel Giddins <segiddins@segiddins.me>2015-11-26 12:42:53 -0600
commit232815d8d5d8549a9f1c51c74872a89741f96911 (patch)
treec59953b5a296e2fdcbd9ebd5e16e07b85dbfdc75 /lib/bundler/match_platform.rb
parent404903c84e85004f1d451bf75a6b534c87efb089 (diff)
downloadbundler-232815d8d5d8549a9f1c51c74872a89741f96911.tar.gz
[RuboCop] Enable Style/MultilineOperationIndentation
Diffstat (limited to 'lib/bundler/match_platform.rb')
-rw-r--r--lib/bundler/match_platform.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/match_platform.rb b/lib/bundler/match_platform.rb
index f1d95bfb59..f4b9492c25 100644
--- a/lib/bundler/match_platform.rb
+++ b/lib/bundler/match_platform.rb
@@ -6,8 +6,8 @@ module Bundler
def match_platform(p)
Gem::Platform::RUBY == platform ||
- platform.nil? || p == platform ||
- generic(Gem::Platform.new(platform)) === p
+ platform.nil? || p == platform ||
+ generic(Gem::Platform.new(platform)) === p
end
end
end