0
votes
1answer
50 views
Rails unit tests for functions which use attachments
I'm creating a program which will be examining images which are uploaded by the users logged in. I have the RMagick code written up to do the examination (basically finding out if a pixel black is …
3
votes
How to DRY this snippet of Ruby code?
I would code this like
def current_account
@account ||= current_subdomain.blank? ? nil : Account.find_by_host(current_subdomain)
end
As for the exceptions, find_ …
2
votes
Sending a code block to a find_all dynamic method
I use the .each method which Enumerable provides like
@products = Product.find_all_by_ids(ids, .....)
@products.each { |p| p.stock += 10 }
There are e …
