Created
October 6, 2010 15:04
-
-
Save maggit/613493 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> building = Building.find_all_by_address_or_name("301 Cumberland Street") | |
=> [] | |
>> building = Building.find_by_address("301 Cumberland Street") | |
=> nil | |
>> building = Building.find_by_address("301 Cumberland Street") | |
=> nil | |
>> building = Building.find_by_landmark_name("301 Cumberland Street") | |
=> nil | |
>> building = Building.find_all_by_landmark_name("301 Cumberland Street") | |
=> [] | |
>> building = Building.find_all_by_address("301 Cumberland Street") | |
=> [#<Building:23456377045600 @id=113676 '301 Cumberland Street in Fort Greene'>] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment