serializer for Ruby Objects
Add this line to your application's Gemfile:
gem 'eyra'
And then execute:
$ bundle
Or install it yourself as:
$ gem install eyra
class MovieSerializer
include Eyra
field :title,type: String
field :year,type: Integer
dump_format :year_in_hex do
year.to_i.to_s(16)
end
end
MovieSerialize.new(@movie).to_json # { movie: 'The fight club', year: 1999,year_in_hex: "7cf" }
wip
https://github.com/netflix/fast_jsonapi
Bug reports and pull requests are welcome on GitHub at https://github.com/marianogabriels/eyra.