Skip to content

Instantly share code, notes, and snippets.

@griffin-stewie
Created September 23, 2012 08:16
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 griffin-stewie/3769332 to your computer and use it in GitHub Desktop.
Save griffin-stewie/3769332 to your computer and use it in GitHub Desktop.
Happy-Go-Lucky: 【要Mac】[iOS6] 連絡先に登録した顔文字などをユーザ辞書に登録するスクリプト 【うまくいくといいな】 http://www.toshiya240.com/2012/09/ios6.html の Ruby 版
#!/usr/bin/env ruby
require 'rubygems'
require 'vpim/vcard'
ARGV.each do |file|
cards = Vpim::Vcard.decode(open(file))
cards.each do |card|
puts %Q["#{card.field("X-phonetic-last-name").value}","#{card.name.family}","無品詞"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment