Created
April 23, 2015 07:48
-
-
Save badosu/ca61b6bfbb198386fe9b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
PROJECT=my_proj | |
PROJECT_CLASS=MyProj | |
sed -e "s/yogurt/$PROJECT/g" -i yogurt.rb config.ru views/index.html.erb views/layout.html.erb | |
sed -e "s/Yogurt/$PROJECT_CLASS/g" -i yogurt.rb config.ru | |
mv yogurt.rb $PROJECT.rb | |
mv assets/css/yogurt/yogurt.css assets/css/yogurt/$PROJECT.css | |
mv assets/css/yogurt assets/css/$PROJECT | |
mv assets/js/yogurt assets/js/$PROJECT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment