Skip to content

Instantly share code, notes, and snippets.

/base.rb Secret

Created November 25, 2014 12:54
Show Gist options
  • Save anonymous/97c23e2a9e973b9767e0 to your computer and use it in GitHub Desktop.
Save anonymous/97c23e2a9e973b9767e0 to your computer and use it in GitHub Desktop.
class Account
include DataMapper::Resource
# ...
# some things
# ...
def to_json
puts "JSON!"
end
end
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