Skip to content

Instantly share code, notes, and snippets.

@DrummerHead
Created November 5, 2014 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DrummerHead/bed68c1251e22cd6100f to your computer and use it in GitHub Desktop.
Save DrummerHead/bed68c1251e22cd6100f to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
files = [
'variables',
'mixins',
'font-face',
'baseline',
'persistent',
'responsive',
'print',
]
folders = [
'modular',
'specific-page',
]
files.each do |filename|
%x[touch _#{filename}.scss]
end
folders.each do |foldername|
%x[mkdir #{foldername}]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment