rover 1.0.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/rover +0 -2
- data/lib/rover.rb +2 -2
- metadata +1 -1
data/bin/rover
CHANGED
data/lib/rover.rb
CHANGED
|
@@ -113,7 +113,7 @@ class Rover
|
|
|
113
113
|
end
|
|
114
114
|
|
|
115
115
|
def config_env_pip
|
|
116
|
-
['virtualenv'
|
|
116
|
+
['virtualenv'].each do |exe|
|
|
117
117
|
unless which(exe)
|
|
118
118
|
raise "you're fucked; missing #{exe}. please install first"
|
|
119
119
|
end
|
|
@@ -239,4 +239,4 @@ class Rover
|
|
|
239
239
|
def should_exclude? config_file
|
|
240
240
|
config_file.include? 'node_module'
|
|
241
241
|
end
|
|
242
|
-
end
|
|
242
|
+
end
|