mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-09 00:15:05 +00:00
10 lines
213 B
Plaintext
10 lines
213 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
begin
|
||
|
load File.expand_path('../spring', __FILE__)
|
||
|
rescue LoadError => e
|
||
|
raise unless e.message.include?('spring')
|
||
|
end
|
||
|
require_relative '../config/boot'
|
||
|
require 'rake'
|
||
|
Rake.application.run
|