Search Results

3
votes

Retrieving client system information from a Rails application

I'm pretty sure it is not possible to parse the /proc filesystem of a client computer through a Rails applications (and thank God for that). What you could do is make use of Javascript to s …
0
votes

How can I access a different object collection in a view in Rails?

The error suggests you foo object is empty. If you want all Foo's connected with the current user object, you use my_user = User.find(1) # finds user with id no. 1 list_of_ …