-
Notifications
You must be signed in to change notification settings - Fork 2
update readme #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
rebase this @nav16 |
|
|
||
| ##Creating DBF | ||
| ``` | ||
| RBase.create_table 'people' do |t| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can I give the filepath where the .dbf file is created?
|
ping |
1 similar comment
update readme
1 similar comment
| ##Points To Remember | ||
| - The column name can not be more than 10 characters and should not have spaces. | ||
| - The column with date type pass the date object not a string or any other. | ||
| - The gem will generate file in `dbase III` format. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
link to dbase III format
| t.column :tax, :integer, size: 10, decimal: 2 | ||
| end | ||
| ``` | ||
| You can provide file path in place of name, eg. `people` can be `tmp/dbfs/people`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name confusing with :name. You can say that RBase.create_table takes a file path eg tmp...
| How to use: | ||
|
|
||
| First create a DBF file. | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Usage
## Creating DBF
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove how to use and first create...
| [](https://coveralls.io/github/cybrilla/rbase?branch=master) | ||
|
|
||
| Create, read and edit dbf files. | ||
| rbase gem is used to create DBF files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rbase provides interface for interacting with DBF files.
|
Readme needs to have these sections: |
No description provided.