Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kostya/marshal64
- Owner: kostya
- License: mit
- Created: 2012-08-23T17:46:22.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-23T17:46:47.000Z (about 12 years ago)
- Last Synced: 2023-03-11T22:52:36.211Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```