nsplist

Version, currently 0.1.12 versions

github.com/gemmaro/nsplist

nsplist is a Crystal library for parsing the old-style ASCII property lists.

1 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  nsplist:
    github: gemmaro/nsplist
    version: ~> 0.1.1

Then run:

shards install

shard.yml

Crystal
>= 1.11.1
License
MIT
Author
gemmaro

Dependencies

This version declares no dependencies.

README

nsplist

GitHub release

Old-style ASCII property lists parser.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      nsplist:
        github: gemmaro/nsplist
  2. Run shards install

Usage

require "nsplist"

NSPlist.parse(source) #=> property list data

Development

crystal spec for testing, and crystal docs to generate an API documentation.

Contributing

  1. Fork it (https://github.com/gemmaro/nsplist/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Related Works

There are several related works on the property list parsing. For parsing the property lists in the XML format, there is a plist-cr libarry.

Contributors