Created
October 13, 2014 19:47
-
-
Save gavinballard/6b85380ef535db24dc44 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 ruby | |
require 'yaml' | |
# Get the "type" of checkout from the arguments Git passes to us. | |
# Possible values for this are "0" for a file-only checkout (which we dont' care about) | |
# or "1" for a full branch checkout (which we do). | |
checkout_type = ARGV[2] | |
if checkout_type == "1" | |
# Get the name of the current branch and the absolute path to our git root. Trim whitespace. | |
current_branch_name = `git rev-parse --abbrev-ref HEAD`.gsub(/\s+/, "") | |
root_directory = `git rev-parse --show-toplevel`.gsub(/\s+/, "") | |
# Convert the branch name to a symbol for hash lookups. | |
branch = current_branch_name.to_sym | |
# Find and update any config.yml files. | |
Dir.glob("#{root_directory}/**/config.yml").each do |config_file| | |
config = YAML.load_file(config_file) | |
# Check to see if we've specified a known theme ID for this branch. | |
if config.has_key?(branch) | |
config[:theme_id] = config.fetch(branch) | |
File.open(config_file, 'w') do |f| | |
f.write config.to_yaml | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment