# frozen_string_literal: true require 'ffi' require_relative "alamojoe/version" puts Dir.pwd module Alamojoe extend FFI::Library ffi_lib 'lib/libcore.so' attach_function :configure, [:string], :int class Error < StandardError; end # Your code goes here... end