rq 3.5.0 → 3.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rq +2 -1
- data/gemspec.rb +1 -1
- metadata +1 -1
data/bin/rq
CHANGED
@@ -306,7 +306,8 @@
|
|
306
306
|
end
|
307
307
|
if @dot_rq_dir.nil?
|
308
308
|
home = ENV['HOME'] || File::expand_path('~') rescue abort("ENV['HOME'] is unset!")
|
309
|
-
|
309
|
+
parts = [home, '.rq', @qpath].compact
|
310
|
+
@dot_rq_dir = File::join(*parts)
|
310
311
|
end
|
311
312
|
FileUtils.mkdir_p @dot_rq_dir
|
312
313
|
#--}}}
|
data/gemspec.rb
CHANGED