文件名称:fieldy:一个用于读写固定宽度文件的 ruby 库
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-02 01:54:12
Ruby
菲尔迪 Fieldy 是一个用于读写固定宽度记录的 ruby 库 安装 如果您还没有,请添加 github gem 源: gem sources -a http://gems.github.com 安装宝石: gem install jcapote-fieldy 例子 写作记录 require 'fieldy' class AnotherFile include Fieldy::Writer field :first_name, 5 field :last_name, 5 end AnotherFile.write(:first_name => "jimmy", :last_name => "fall") #=> "jimmyfall " 阅读记录 require 'fieldy' class ExampleFile include Fieldy::Rea
【文件预览】:
fieldy-master
----fieldy.gemspec(864B)
----Rakefile(136B)
----README.markdown(2KB)
----Gemfile(91B)
----Gemfile.lock(187B)
----spec()
--------fieldy()
--------spec_helper.rb(84B)
----lib()
--------fieldy()
--------fieldy.rb(137B)
----LICENSE.txt(1KB)