-
-
Save anonymous/97c23e2a9e973b9767e0 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
class Account | |
include DataMapper::Resource | |
# ... | |
# some things | |
# ... | |
def to_json | |
puts "JSON!" | |
end | |
end |
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
class Model | |
def to_json | |
puts "JSON!" | |
end | |
end | |
class Account < Model | |
include DataMapper::Resource | |
# ... | |
# some things | |
# ... | |
def to_json | |
puts "JSON!" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment