Created
August 23, 2012 00:01
-
-
Save skylar/3430735 to your computer and use it in GitHub Desktop.
Money type for DM
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
| require 'dm-core' | |
| require 'money' | |
| module DataMapper | |
| class Property | |
| class Money < String | |
| load_as ::Money | |
| dump_as ::Money | |
| coercion_method :to_money | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment