Created
January 11, 2010 19:47
-
-
Save cpetersen/274535 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
| class Person < ActiveRecord:Base | |
| attr_accessor :name | |
| def to_s | |
| name | |
| end | |
| end | |
| @names = Person.new(:name => "Colin") | |
| @names = Person.all |
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
| @names = "Colin" | |
| @names = ["Colin", "Chris"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment