A ruby plugin used to help evaluate the exported Ghost users
Install the gem and add to the application's Gemfile by executing:
$ bundle add ghost_user_parser
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install ghost_user_parser
To parse the export:
parser = GhostUserParser.new("path/to/export.cvs").parse
[
{
"id": "id",
"email": "email",
"name": "name",
"note": "note",
"subscribed_to_emails": "subscribed_to_emails",
"complimentary_plan": "complimentary_plan",
"deleted_at": "deleted_at",
"created_at": "created_at",
"labels": "labels",
"tiers": "tiers"
}, ......
]