mirror of
https://github.com/usetrmnl/terminus.git
synced 2026-04-29 13:34:37 -07:00
81c5f67fa9
Generated with link:https://alchemists.io/projects/hanamismith[Hanamismith] 1.4.0. This includes the link:https://github.com/minimagick/minimagick[MiniMagick] gem for converting images into black and white images for display on TRMNL devices.
16 lines
281 B
Ruby
Executable File
16 lines
281 B
Ruby
Executable File
#! /usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require "bundler/setup"
|
|
Bundler.require :tools
|
|
|
|
require "hanami/prepare"
|
|
require "irb"
|
|
|
|
unless Hanami.env? :development, :test
|
|
ENV["IRB_USE_AUTOCOMPLETE"] ||= "false"
|
|
puts "IRB autocomplete disabled."
|
|
end
|
|
|
|
IRB.start __FILE__
|