Run 'crystal tool format'

このコミットが含まれているのは:
Omar Roth 2017-12-30 15:38:09 -06:00
コミット 87601d1400
2個のファイルの変更8行の追加8行の削除

ファイルの表示

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

ファイルの表示

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