Created
January 22, 2015 00:31
-
-
Save joelparkerhenderson/ae3e3f34bdc6036abca8 to your computer and use it in GitHub Desktop.
This file contains 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
require 'ostruct' | |
class Transaction | |
attr_accessor :name, :last_name, :nation_id | |
def nation; OpenStruct.new(name: "Nation ID " + nation_id); end | |
end | |
@transaction = Transaction.new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment