namespace :sync do

desc "Converts the yml files in config/locales into a single json object"

task :export do
  converter = ConverterService.new
  aws_service = AwsService.new

  converter.iterate_locale_dir
  aws_service.publish_project_json(converter.json_file)
end

end