Ruby array equivalent of active record.where(criteria)

10,005

You can use the select method.

@x = @my_array_of_stuff.select {|v| v["single-key"]["object-identifier"] > 3}
Share:
10,005
overtone
Author by

overtone

Updated on June 09, 2022

Comments

  • overtone
    overtone almost 2 years

    This may be a really long stretch but would make life a fair bit easier if it existed.

    Heres the scenario any case. I have an array of hashes with one key whos value is another hash........Yeah, I know.

    Heres a better explanation:

    @myArrayOfStuff[0]
    @myArrayOfStuff[0]["single-key"]
    @myArrayOfStuff[0]["single-key"]["object-identifier"]
    

    The first returns a hash. The second would return an object (called page in my case but example uses different names) The third returns whatever variable I have reference as object-identifier.

    Simple enough.

    What I'd like to do is pick make another array where object-identifiers value is not nil or is greater than x. Something Similar to the activerecord.where method.

    @x = @myArrayOfStuff.where(["single-key"]["object-identifier"]) > 3orwhatever
    

    Obviously this doesn't work as the syntax is attrocious. But is there another way of going about it? Another route to try might possibly be to sort the array by this variable. Something like

    @x = @myArrayOfStuff.sort {|x,y| y <=> x } 
    

    However I dont really understand whats going on with ruby's sort method. Can anyone help?