2
votes
4answers
434 views
Given an array of ActiveRecord objects, can I easily collect their relationships through a method call?
Let's say I have the following code:
@sites = Site.find(session[:sites]) # will be an array of Site ids
@languages = Language.for_sites(@sites)
for_sites is a name …
0
votes
Calling Bash Commands From Ruby
You can also use the backtick operators (`), similar to Perl:
directoryListing = `ls /`puts directoryListing # prints the contents of the root directory
…
