#!/usr/bin/env ruby require 'babel_diff' help = <<-HELP usages: babel_import [defaults to 'config/locales/'] Imports all phrase files in the and merges them with the phrase files in . Existing keys will be overwritten. babel_diff [defaults to 'config/locales/phrase.en.yml'] Produces two files containing all updates and all additions to the given phrase file located at since babel_diff last ran. HELP case ARGV.first when nil puts help exit 1 when "--help" puts help exit 0 else if ARGV[1] BabelDiff.import_translations(ARGV[0], ARGV[1]) else BabelDiff.import_translations(ARGV[0]) end end