Created
September 23, 2012 08:16
-
-
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 版
This file contains hidden or 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 '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