gemfileGemsGenerator top-level property
Implementation
final FigGenerator gemfileGemsGenerator = FigGenerator(
script: ['bundle', 'list', '--name-only'],
postProcess: (out, [tokens]) {
return out
.split('\n')
.where((s) => s.isNotEmpty)
.map((gem) => FigSuggestion(
name: gem,
icon: '📦',
description: 'Gem',
))
.toList();
},
);