Lines Matching refs:part1
168 def create_filename(part1, part2 = '') argument
171 when 'bumpy' then part1
172 when 'camel' then part1
173 when 'snake' then part1.downcase
174 when 'caps' then part1.upcase
175 else part1
179 when 'bumpy' then part1 + part2
180 when 'camel' then part1 + part2
181 when 'snake' then part1.downcase + '_' + part2.downcase
182 when 'caps' then part1.upcase + '_' + part2.upcase
183 else part1 + '_' + part2