rover 1.1.0 → 1.1.1
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/lib/rover.rb +2 -1
- metadata +1 -1
data/lib/rover.rb
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
require 'logger'
|
|
2
2
|
require 'open3'
|
|
3
3
|
require 'colorize'
|
|
4
|
-
require 'foreman'
|
|
5
4
|
|
|
6
5
|
module Utils
|
|
7
6
|
# Cross-platform way of finding an executable in the $PATH.
|
|
@@ -172,6 +171,8 @@ class Rover
|
|
|
172
171
|
|
|
173
172
|
=begin
|
|
174
173
|
def run_servers procfile_location = nil
|
|
174
|
+
require 'foreman'
|
|
175
|
+
|
|
175
176
|
if procfile_location && !procfile_location.end_with?('/')
|
|
176
177
|
procfile_location = "#{procfile_location}/"
|
|
177
178
|
end
|