Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dymio/dpt-phonebook
DP Test Phonebook
https://github.com/dymio/dpt-phonebook
Last synced: 4 days ago
JSON representation
DP Test Phonebook
- Host: GitHub
- URL: https://github.com/dymio/dpt-phonebook
- Owner: dymio
- Created: 2012-08-01T05:59:46.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T22:19:30.000Z (over 2 years ago)
- Last Synced: 2023-03-23T12:17:45.352Z (over 1 year ago)
- Language: Ruby
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DP Test Phonebook
=================Rails phonebook application with functions of export and import.
Demo you can see [here](http://still-shelf-4969.herokuapp.com/).Import file
-----------Import file is file of TSV format - lines of values separated from the next by a tab stop character ([wikipedia article](http://en.wikipedia.org/wiki/Tab-separated_values)).
**Import file can add new contact and/or phone numbers with line like**:
Contact name number number ...
or:
$#+ Contact name number number ...
- If app can't find `Contact name` in phonebook, new contact will be created
- If app find `Contact name` in phonebook, new `number`'s will be added to exist contactExample: `John Doe +1 (845) 637 2957 +37654329900`
**Import file can rename existing contacts with line like**:
$#~ Old name New name
- Rename work only if app find contact with name equal to `Old name`
Example: `$#~ John Doe Jannet Doe`
**Import file can remove contacts with line like**:
$#- Contact name
and remove phone numbers from contact with line like:
$#- Contact name number_for_remove number_for_remove ...
Example: `$#- Jannet Doe +37654329900` and `$#- Jannet Doe`
Author: Dymio ([email protected])