Remove unwanted whitespaces.

This commit is contained in:
cheetah 2013-07-26 16:06:25 +04:00
parent 222a0c9e32
commit 47f89bdf17
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
--- ---
:verbose: true :verbose: true
gem: --no-rdoc gem: --no-rdoc
:update_sources: true :update_sources: true
:sources: :sources:
- http://gems.rubyforge.org - http://gems.rubyforge.org
- http://gems.github.com - http://gems.github.com
:backtrace: false :backtrace: false

View File

@ -11,7 +11,7 @@ Pry.config.commands.import(Pry::CommandSet.new do
load($wl__reload_file) load($wl__reload_file)
next next
end end
files = Dir['*.rb'] files = Dir['*.rb']
case files.size case files.size
when 0 when 0
@ -25,7 +25,7 @@ Pry.config.commands.import(Pry::CommandSet.new do
next next
end end
end end
file = file.sub(/(\.rb)?$/, '.rb') file = file.sub(/(\.rb)?$/, '.rb')
$wl__reload_file = file $wl__reload_file = file
load(file) load(file)