class Spinach::Orderers::Default
Public Class Methods
new(**options)
click to toggle source
# File lib/spinach/orderers/default.rb, line 4 def initialize(**options); end
Public Instance Methods
attach_summary(io)
click to toggle source
Appends any necessary report output (by default does nothing).
@param [IO] io
Output buffer for report.
@api public
# File lib/spinach/orderers/default.rb, line 12 def attach_summary(io); end
order(items)
click to toggle source
Returns a reordered version of the provided array
@param [Array] items
Items to order
@api public
# File lib/spinach/orderers/default.rb, line 20 def order(items) items end