Run 'crystal tool format'

This commit is contained in:
Omar Roth 2017-12-30 15:38:09 -06:00
parent 7fc7a47849
commit 87601d1400
2 changed files with 8 additions and 8 deletions

View File

@ -8,13 +8,14 @@ module Sentry
property files = [] of String
def initialize(
@process_name : String,
@build_command : String,
@run_command : String,
@build_args : Array(String) = [] of String,
@run_args : Array(String) = [] of String,
files = [] of String,
should_build = true)
@process_name : String,
@build_command : String,
@run_command : String,
@build_args : Array(String) = [] of String,
@run_args : Array(String) = [] of String,
files = [] of String,
should_build = true
)
@files = files
@should_build = should_build
@should_kill = false

View File

@ -5,7 +5,6 @@ require "pg"
require "xml"
require "time"
macro templated(filename)
render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr"
end