mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 11:06:23 +00:00
11 lines
240 B
Ruby
Executable file
11 lines
240 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
begin
|
|
load File.expand_path('spring', __dir__)
|
|
rescue LoadError => e
|
|
raise unless e.message.include?('spring')
|
|
end
|
|
require_relative '../config/boot'
|
|
require 'rake'
|
|
Rake.application.run
|