Created
April 22, 2015 05:01
-
-
Save pencilcheck/3f360878d3aba8805b6d 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
google = Company.new({ | |
name: 'Google', | |
url: 'www.google.com', | |
desc: 'Leading Search Engine', | |
public_at: 2004 | |
}) | |
store._companies << google | |
class Company < Volt::Model | |
validate :name, unique: true | |
has_many :jobs | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment