Socket
Book a DemoInstallSign in
Socket

serializable_decorator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serializable_decorator

bundlerRubygems
Version
0.0.3
Version published
Maintainers
1
Created
Source

SerializableDecorator

An implementation of Delegate that groups the member variables of the delegator (a subclass of SerializableDecorator) together with those of the delegated object. For example:

class MyDecorator < SerializableDecorator
  :attr_accessor :foo
end

class SomeClass
  :attr_accessor :bar
end

decorated_class = MyDecorator.new(SomeClass.new)
decorated_class.foo = "Hello"
decorated_class.bar = "World"
puts decorated_class.foo                 # => "Hello"
puts decorated_class.bar                 # => "World"
puts decorated_class.instance_variables  # => @foo and @bar
puts decorated_class.instance_values     # => { "foo" => "Hello", "bar" => "World" }

Installation

Add this line to your application's Gemfile:

gem 'serializable_decorator'

And then execute:

$ bundle

Or install it yourself as:

$ gem install serializable_decorator

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Added some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

FAQs

Package last updated on 03 Jul 2012

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