Created
November 8, 2024 16:01
-
-
Save havenwood/280b25736d424994744ac7ef04287a92 to your computer and use it in GitHub Desktop.
An example of implementing #to_json for Ruby IRC
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 'json' | |
class Waffle | |
def initialize(toppings:, syrup:) | |
@toppings = toppings | |
@syrup = syrup | |
end | |
class << self | |
def json_create(object) | |
toppings, syrup = object.values_at('t', 's') | |
new(toppings:, syrup:) | |
end | |
end | |
def as_json(*) | |
{ | |
JSON.create_id => self.class.name, | |
't' => @toppings, | |
's' => @syrup | |
} | |
end | |
def to_json(*) = as_json(*).to_json(*) | |
end | |
waffle = Waffle.new( | |
toppings: ['strawberries', 'whipped cream'], | |
syrup: 'maple', | |
) | |
json = waffle.to_json | |
#=> "{\"json_class\":\"Waffle\",\"t\":[\"strawberries\",\"whipped cream\"],\"s\":\"maple\"}" | |
pp JSON.unsafe_load(json) | |
#=> #<Waffle:0x0 @syrup="maple", @toppings=["strawberries", "whipped cream"]> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment