文件名称:vcardio:Ruby 的 vCard 构建器和解析器
文件大小:20KB
文件格式:ZIP
更新时间:2024-07-01 00:37:00
ruby parse vcard Ruby
心电图 构建和解析 v3 和 v4 vCard 安装 将此行添加到应用程序的 Gemfile 中: gem 'vcardio' 然后执行: $ bundle 或者自己安装: $ gem install vcardio 用法 创建电子名片 VCardio 配备了强大且易于使用的 DSL: vcard = VCardio :: VCard . new ( '3.0' ) do fn %w( Smith Anthony ) org 'Sticksnleaves' tel '(555) 555-5555' , type : 'HOME' tel '(555) 555-5556' , type : 'WORK' item1 . gender 'M' end 要将您的 vCard 转换为字符串,只需调用to_s : vcard . to_s # => VCA
【文件预览】:
vcardio-master
----.gitignore(125B)
----.rspec(31B)
----bin()
--------setup(115B)
--------console(332B)
----.travis.yml(185B)
----CODE_OF_CONDUCT.md(1KB)
----LICENSE.txt(1KB)
----spec()
--------param_parser_spec.rb(688B)
--------support()
--------name_parser_spec.rb(484B)
--------document_parser_spec.rb(2KB)
--------vcard_spec.rb(3KB)
--------spec_helper.rb(298B)
--------value_parser_spec.rb(738B)
--------group_parser_spec.rb(486B)
--------property_spec.rb(2KB)
--------parameter_spec.rb(1KB)
--------builder_spec.rb(2KB)
----README.md(2KB)
----lib()
--------vcardio.rb(633B)
--------vcardio()
----Gemfile(92B)
----vcardio.gemspec(1KB)
----Rakefile(197B)