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