179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
# File 'lib/erdb/cli.rb', line 179
def self.welcome
<<~WELCOME
.----------------. .----------------. .----------------. .----------------.
| .--------------. || .--------------. || .--------------. || .--------------. |
| | _________ | || | _______ | || | ________ | || | ______ | |
| | |_ ___ | | || | |_ __ \\ | || | |_ ___ `. | || | |_ _ \\ | |
| | | |_ \\_| | || | | |__) | | || | | | `. \\ | || | | |_) | | |
| | | _| _ | || | | __ / | || | | | | | | || | | __'. | |
| | _| |___/ | | || | _| | \\ \\_ | || | _| |___.' / | || | _| |__) | | |
| | |_________| | || | |____| |___| | || | |________.' | || | |_______/ | |
| | | || | | || | | || | | |
| '--------------' || '--------------' || '--------------' || '--------------' |
'----------------' '----------------' '----------------' '----------------'
#{about}
ERDB will use chrome as the default browser to automate the process.
Use 'erdb --help' to see the available options.
WELCOME
end
|