<FromGitter>
<silentworks> @damianham that looks better than mine, I shall steal it as soon as I understand how count is working on a Enumerable
<FromGitter>
<silentworks> Is there a way to dump the POST values to the terminal and pausing the app?
<FromGitter>
<robacarp> There isn’t a way to pause the app, a la rails debugger, unless you use something like lldb
<FromGitter>
<robacarp> But you can puts anything from your app and it’ll dump to the console
<FromGitter>
<robacarp> (Or pp, etc)
<FromGitter>
<damianham> @silentworks Enumerable#count(&block) Returns the number of elements in the collection for which the passed block returns true.