engineyard-serverside 2.6.12.prewut0 → 2.6.12.prewut1
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.
@@ -45,6 +45,7 @@ module EY
|
|
45
45
|
raise "Unknown value #{enabled.inspect} for option #{name.inspect}. Expected [true, false, detect]"
|
46
46
|
end
|
47
47
|
end
|
48
|
+
puts "select_managers found #{managers.inspect}"
|
48
49
|
managers.compact
|
49
50
|
end
|
50
51
|
|
@@ -64,12 +65,16 @@ module EY
|
|
64
65
|
# Verify application state with respect to dependency management.
|
65
66
|
# Warn if there is anything wrong with the dependency manager.
|
66
67
|
def check
|
67
|
-
each { |m|
|
68
|
+
each { |m|
|
69
|
+
puts "running check on #{m.inspect}"
|
70
|
+
m.check }
|
68
71
|
end
|
69
72
|
|
70
73
|
# Install dependencies for each of the dependency managers.
|
71
74
|
def install
|
72
|
-
each { |m|
|
75
|
+
each { |m|
|
76
|
+
puts "running install on #{m.inspect}"
|
77
|
+
m.install }
|
73
78
|
end
|
74
79
|
|
75
80
|
# Assume application is not using sqlite3 unless a dependency manager
|