adding gem file executable

This commit is contained in:
2022-12-02 19:42:16 +01:00
parent cee9087661
commit 13851a980c
15 changed files with 138 additions and 22 deletions

14
exe/aoc Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
lib_path = File.expand_path('../lib', __dir__)
$:.unshift(lib_path) if !$:.include?(lib_path)
require("aoc")
begin
AOC.run
rescue StandardError => err
puts "ERROR: #{err.message}"
exit 1 #err.status
end