Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rice_bubble

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rice_bubble

  • 0.2.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RiceBubble

Simple serialization with a sprinkling of type safety. Part of your complete breakfast.

Installation

Install the gem and add to the application's Gemfile by executing:

$ bundle add rice_bubble

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install rice_bubble

Usage

Create a subclass of RiceBubble::Serializer and add some attributes:

class CharacterSerializer < RiceBubble::Serializer
  attributes(
    name: string,
    player_name: optional(string),
    class: enum('fighter', 'wizard', 'thief'),
    stats: object(
      strength: integer,
      dexterity: integer,
      constitution: integer,
      intelligence: integer,
      wisdom: integer,
      charisma: integer,
    )
  )
end

Then you can use the new serializer to convert your data to a JSON-friendly representation:

json = CharacterSerializer.new(my_character).call # => { name: "...", ... }

Note: you can also use CharacterSerializer.call(my_character).

Attribute types

NameExpectsOptionsExample
anyany of the specified typesarray of attribute typesany(string, integer)
booleantrue or falseboolean
dateDate or #to_datedate
enummatching stringarray of string valuesenum('red', 'blue', 'green')
integerInteger or #to_imax, mininteger(min: 3, max: 20)
literalexactly matching valueliteralliteral('foo')
numberNumericmax, minnumber(min: 3, max: 20)
objectObject or Hashhash of object names and attribute typesobject(name: string, age: integer)
optionalvalue or nilattribute typeoptional(string)
serializedObject or HashSerializer classserialized(SkillSerializer)
stringString or #to_smax, min, formatstring(min: 3, max: 20, format: /\A[a-z]+\z/i)
timeTime or #to_timetime

In this way, you can recursively build up quite complex nested structures of attributes in your serializer.

optional

All attributes are required unless marked as optional. You can either do this with the optional attribute type, or by appending .optional to the attribute definition. That is, the following are equivalent:

optional(string(min: 3))
string(min: 3).optional

Implementing your own attribute types

The attribute types are looked up automatically in the namespace RiceBubble::Attributes. Any subclass of RiceBubble::Attributes::Base located there will automatically be found by the serializer.

class RiceBubble::Serializer::Wrap < RiceBubble::Attributes::Base
  def initialize(with: %w([ ]), &)
    super(&)
    @before, @after = with
  end

  def coerce(value)
    "#{before}#{value}#{after}"
  end
end

class WrappingSerializer < RiceBubble::Serializer
  attributes(
    name: wrap(with: %w({ }))
  )
end

WrappingSerializer.call({ name: 'Spicy Beef' }) # => { name: '{Spicy Beef}' }

Fetching values from an object

By default, attributes know how to fetch their values from the object being serialized by either (in this order):

  • invoking an instance method with the same name on the serializer; or
  • invoking an instance method with the same name on the object; or
  • looking up a hash key on the object
class FullNameSerializer
  attributes(
    full_name: string
  )

  def full_name
    [object.first_name, object.last_name].join(' ')
  end
end

You can also change how a value is retrieved by passing a block to the attribute:

class FullNameSerializer
  attributes(
    full_name: string { |o, _| [o.first_name, o.last_name].join(' ') }
  )
end

The block takes two values: the object being serialized, and (optionally) the name of the key being retrieved.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitLab at https://gitlab.com/fauxparse/rice_bubble. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the 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 RiceBubble project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

FAQs

Package last updated on 24 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc