ruby-quilt 0.0.3 → 0.0.4
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/quilt.rb +4 -5
- metadata +1 -1
data/lib/quilt.rb
CHANGED
@@ -231,10 +231,9 @@ class Quilt
|
|
231
231
|
end
|
232
232
|
|
233
233
|
# resolve dependancies
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
''}"
|
234
|
+
outversion = version[prefix] || version[:default]
|
235
|
+
output = "#{outversion[:base]}#{resolve_dependancies(modules, outversion, {})}#{outversion[:footer] ?
|
236
|
+
outversion[:footer] :
|
237
|
+
''}"
|
239
238
|
end
|
240
239
|
end
|