aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/gem_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/gem_helpers.rb')
-rw-r--r--lib/bundler/gem_helpers.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/bundler/gem_helpers.rb b/lib/bundler/gem_helpers.rb
index 2af87c94..fc1a3415 100644
--- a/lib/bundler/gem_helpers.rb
+++ b/lib/bundler/gem_helpers.rb
@@ -3,13 +3,13 @@ module Bundler
GENERIC_CACHE = {}
GENERICS = [
- [Gem::Platform.new('java'), Gem::Platform.new('java')],
- [Gem::Platform.new('mswin32'), Gem::Platform.new('mswin32')],
- [Gem::Platform.new('mswin64'), Gem::Platform.new('mswin64')],
- [Gem::Platform.new('universal-mingw32'), Gem::Platform.new('universal-mingw32')],
- [Gem::Platform.new('x64-mingw32'), Gem::Platform.new('x64-mingw32')],
- [Gem::Platform.new('x86_64-mingw32'), Gem::Platform.new('x64-mingw32')],
- [Gem::Platform.new('mingw32'), Gem::Platform.new('x86-mingw32')]
+ [Gem::Platform.new("java"), Gem::Platform.new("java")],
+ [Gem::Platform.new("mswin32"), Gem::Platform.new("mswin32")],
+ [Gem::Platform.new("mswin64"), Gem::Platform.new("mswin64")],
+ [Gem::Platform.new("universal-mingw32"), Gem::Platform.new("universal-mingw32")],
+ [Gem::Platform.new("x64-mingw32"), Gem::Platform.new("x64-mingw32")],
+ [Gem::Platform.new("x86_64-mingw32"), Gem::Platform.new("x64-mingw32")],
+ [Gem::Platform.new("mingw32"), Gem::Platform.new("x86-mingw32")]
]
def generic(p)