flexserializer

Gem flexserializer for all ruby projects


License
MIT
Install
gem install flexserializer -v 1.3.0

Documentation

Flexserializer

Conveniently structuring your attributes into groups for ActiveModelSerializer

Installation

Add this line to your application's Gemfile:

gem 'flexserializer'

And then execute:

$ bundle

Or install it yourself as:

$ gem install flexserializer

Usage

class CatalogSerializer < Flexserializer::Base
  # ----- example default_attributes
  default_attributes do
    define_attributes :attribute_8, :attribute_9, :attribute_10
  end
  
  # Examples of the group definitions
  
  1)
  group(:group_name_1, :group_name_2, :group_name_3) do
    define_attributes :attribute_1, :attribute_2
    define_has_many   :attributes_5
  end

  2)
  group(:group_name_3) do
    define_attribute  :attribute_3
    define_has_one    :attribute_4
    ...
  end
    
  # If you want to transfer the group name to the next Serializer 
  def attribute_3
    ActiveModelSerializers::SerializableResource.new(object.images, define_options).serializable_hash
  end
end

Call group

for example

class TestController < ApplicationController
  def index
    @hash = ActiveModelSerializers::SerializableResource.new(Model.all, {group: :group_name_3}).serializable_hash
  end
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/flexserializer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Flexserializer project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.