@@ -52,25 +52,25 @@ def run
5252 private
5353
5454 def watch
55- quiet_say "!txtgrn! watching!txtrst! #{ Settings . source_dir } \n "
55+ quiet_say "g` watching` #{ Settings . source_dir } \n "
5656
5757 Filewatcher . new ( [ Settings . source_dir ] ) . watch do
5858 reset
5959 generate
6060
6161 rescue Bashly ::ConfigurationError => e
62- say! "!undred! #{ e . class } !txtrst! \n #{ e . message } "
62+ say! "rib` #{ e . class } ` \n #{ e . message } "
6363
6464 ensure
65- quiet_say "!txtgrn! waiting\n "
65+ quiet_say "g` waiting` \n "
6666 end
6767 end
6868
6969 def generate
7070 with_valid_config do
71- quiet_say 'creating !txtgrn! production!txtrst! version' if Settings . production?
71+ quiet_say 'creating g` production` version' if Settings . production?
7272 generate_all_files
73- quiet_say "run !txtpur! #{ master_script_path } --help!txtrst! to test your bash script" unless watching
73+ quiet_say "run m` #{ master_script_path } --help` to test your bash script" unless watching
7474 end
7575 end
7676
@@ -110,7 +110,7 @@ def upgrade(existing_file, library_name, *args)
110110 if Library . exist? library_name
111111 upgrade! existing_file , library_name , *args
112112 else
113- quiet_say "!txtred! warning!txtrst! not upgrading !txtcyn! #{ existing_file } !txtrst! , " \
113+ quiet_say "r` warning` not upgrading c` #{ existing_file } ` , " \
114114 "unknown library '#{ library_name } '"
115115 end
116116 end
@@ -121,14 +121,14 @@ def upgrade!(existing_file, library_name, *args)
121121
122122 if file
123123 File . deep_write file [ :path ] , file [ :content ]
124- quiet_say "!txtcyn! updated!txtrst! #{ file [ :path ] } "
124+ quiet_say "c` updated` #{ file [ :path ] } "
125125 else
126- quiet_say "!txtred! warning!txtrst! not upgrading !txtcyn! #{ existing_file } !txtrst! , path mismatch"
126+ quiet_say "r` warning` not upgrading c` #{ existing_file } ` , path mismatch"
127127 end
128128 end
129129
130130 def create_user_files
131- quiet_say "creating user files in !txtgrn! #{ Settings . source_dir } "
131+ quiet_say "creating user files in g` #{ Settings . source_dir } ` "
132132
133133 create_file "#{ Settings . source_dir } /initialize.#{ Settings . partials_extension } " ,
134134 command . render ( :default_initialize_script )
@@ -156,17 +156,17 @@ def create_all_command_files
156156
157157 def create_file ( file , content )
158158 if File . exist? ( file ) && !args [ '--force' ]
159- quiet_say "!txtblu! skipped!txtrst! #{ file } (exists)"
159+ quiet_say "b` skipped` #{ file } (exists)"
160160 else
161161 File . deep_write file , content
162- quiet_say "!txtgrn! created!txtrst! #{ file } "
162+ quiet_say "g` created` #{ file } "
163163 end
164164 end
165165
166166 def create_master_script
167167 File . write master_script_path , script . code ( tab_indent : Settings . tab_indent )
168168 FileUtils . chmod '+x' , master_script_path
169- quiet_say "!txtgrn! created!txtrst! #{ master_script_path } "
169+ quiet_say "g` created` #{ master_script_path } "
170170 end
171171
172172 def script
0 commit comments