Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kostya/marshal64

Marshal + Base64 coder. Usefull for serialize data to db.
https://github.com/kostya/marshal64

Last synced: 20 days ago
JSON representation

Marshal + Base64 coder. Usefull for serialize data to db.

Awesome Lists containing this project

README

        

Marshal + Base64 coder. Usefull for serialize data to db.

gem 'marshal64'

```ruby
str = Marshal64.dump(x)
x = Marshal64.load(str)
```

or

```ruby
str = Marshal64.encode(x)
x = Marshal64.decode(str)
```