mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:21:13 +01:00
11 lines
235 B
Ruby
11 lines
235 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class HashObject
|
||
|
def initialize(hash)
|
||
|
hash.each do |k, v|
|
||
|
instance_variable_set("@#{k}", v)
|
||
|
self.class.send(:define_method, k, proc { instance_variable_get("@#{k}") })
|
||
|
end
|
||
|
end
|
||
|
end
|