Skip to content

Instantly share code, notes, and snippets.

@piedoom
Last active September 17, 2016 23:04
Show Gist options
  • Save piedoom/6e58505ddf80d5159dbe36e59d474bfc to your computer and use it in GitHub Desktop.
Save piedoom/6e58505ddf80d5159dbe36e59d474bfc to your computer and use it in GitHub Desktop.
require "JSON"
class BasePost
JSON.mapping({
id: {type: Int32}
})
end
require "JSON"
require "./base_post"
class TextPost < BasePost
JSON.mapping({
name: {type: String}
})
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment