Jsoner
Serialize HTML tables into JSON in Ruby.

Installation
Add this line to your application's Gemfile:
gem 'jsoner'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jsoner
Usage
html = <<-eohtml
<table id='example-table'>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Points</th></tr>
</thead>
<tbody>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td></tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td></tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td></tr>
<tr>
<td>Adam</td>
<td>Johnson</td>
<td>67</td></tr>
</tbody>
</table>
eohtml
# Convert HTML table into Json
json = Jsoner.parse(html)
# output json =>
#
# [ {"First Name"=>"Jill", "Last Name"=>"Smith", "Points"=>"50"},
# {"First Name"=>"Eve", "Last Name"=>"Jackson", "Points"=>"94"},
# {"First Name"=>"John", "Last Name"=>"Doe", "Points"=>"80"},
# {"First Name"=>"Adam", "Last Name"=>"Johnson", "Points"=>"67"} ]
THANKS
table-to-json written by @lightswitch05 in JavaScript.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request