Apple MacBook Pro M1, 32 GB, Ventura 13.2
Documentation based on comments in this Github Elasticsearch issue.
Install Homebrew
Apple MacBook Pro M1, 32 GB, Ventura 13.2
Documentation based on comments in this Github Elasticsearch issue.
require 'celluloid' | |
require 'uuid' | |
class Worker | |
include Celluloid | |
include Celluloid::Logger | |
def initialize | |
@uuid = ::UUID.new | |
end |
class MyGem | |
class << self | |
attr_accessor :color | |
end | |
def self.configure(&block) | |
instance_eval(&block) | |
end | |
end |