mirror of
https://github.com/usetrmnl/trmnl-liquid.git
synced 2026-04-29 13:43:18 -07:00
Necessary to ensure you can jump into the console with minimal effort, library loaded, and debugging tools loaded. Milestone: minor
11 lines
157 B
Ruby
Executable File
11 lines
157 B
Ruby
Executable File
#! /usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require "bundler/setup"
|
|
Bundler.require :tools
|
|
|
|
require "irb"
|
|
require "trmnl/liquid"
|
|
|
|
IRB.start __FILE__
|