From: Michael Orlitzky Date: Wed, 13 Jun 2012 01:51:41 +0000 (-0400) Subject: Fix a missing slash. X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dead%2Fwhatever-dl.git;a=commitdiff_plain;h=ba6846f883a41ed1ee8a79a036ba091d4b1fb9cb Fix a missing slash. --- diff --git a/lib/whatever-dl.rb b/lib/whatever-dl.rb index b32cefb..f3b8907 100644 --- a/lib/whatever-dl.rb +++ b/lib/whatever-dl.rb @@ -34,7 +34,7 @@ my_path = Pathname.new(__FILE__).realpath.to_s # The Dir.glob that's coming up doesn't use the # Ruby library path so we need to tell it where to # look explicitly. -websites_pattern = File.dirname(my_path) + 'whatever-dl/websites/*.rb' +websites_pattern = File.dirname(my_path) + '/whatever-dl/websites/*.rb' # All of the website classes are located in one # directory, so we can 'require' them automatically.