summaryrefslogtreecommitdiff
path: root/lib/bundler/runtime.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-07-18 16:42:16 -0600
committerAndre Arko <andre@arko.net>2015-07-18 16:44:56 -0600
commit14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a (patch)
tree080c4590629671f0bf0fc23225b9b4b5e5e16e95 /lib/bundler/runtime.rb
parent6537566d7179d3aee3451ece710cbe79ced95d4c (diff)
downloadbundler-14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a.tar.gz
Fix Style/SpaceInsideBlockBraces
closes #3850
Diffstat (limited to 'lib/bundler/runtime.rb')
-rw-r--r--lib/bundler/runtime.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/bundler/runtime.rb b/lib/bundler/runtime.rb
index ee260fbc83..5c06685c97 100644
--- a/lib/bundler/runtime.rb
+++ b/lib/bundler/runtime.rb
@@ -35,7 +35,7 @@ module Bundler
end
Bundler.rubygems.mark_loaded(spec)
- load_paths = spec.load_paths.reject {|path| $LOAD_PATH.include?(path)}
+ load_paths = spec.load_paths.reject {|path| $LOAD_PATH.include?(path) }
$LOAD_PATH.unshift(*load_paths)
end
@@ -76,7 +76,7 @@ module Bundler
Kernel.require file
end
rescue LoadError => e
- REQUIRE_ERRORS.find { |r| r =~ e.message }
+ REQUIRE_ERRORS.find {|r| r =~ e.message }
raise if dep.autorequire || $1 != required_file
if dep.autorequire.nil? && dep.name.include?("-")
@@ -84,7 +84,7 @@ module Bundler
namespaced_file = dep.name.gsub("-", "/")
Kernel.require namespaced_file
rescue LoadError => e
- REQUIRE_ERRORS.find { |r| r =~ e.message }
+ REQUIRE_ERRORS.find {|r| r =~ e.message }
raise if $1 != namespaced_file
end
end
@@ -96,7 +96,7 @@ module Bundler
if groups.empty?
dependencies
else
- dependencies.select { |d| (groups & d.groups).any? }
+ dependencies.select {|d| (groups & d.groups).any? }
end
end
@@ -200,10 +200,10 @@ module Bundler
end
unless dry_run
- stale_gem_bins.each { |bin| FileUtils.rm(bin) if File.exist?(bin) }
- stale_gem_files.each { |file| FileUtils.rm(file) if File.exist?(file) }
- stale_gemspec_files.each { |file| FileUtils.rm(file) if File.exist?(file) }
- stale_git_cache_dirs.each { |dir| FileUtils.rm_rf(dir) if File.exist?(dir) }
+ stale_gem_bins.each {|bin| FileUtils.rm(bin) if File.exist?(bin) }
+ stale_gem_files.each {|file| FileUtils.rm(file) if File.exist?(file) }
+ stale_gemspec_files.each {|file| FileUtils.rm(file) if File.exist?(file) }
+ stale_git_cache_dirs.each {|dir| FileUtils.rm_rf(dir) if File.exist?(dir) }
end
output