Skip to content

tannevaled/rson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ruby Simple Object's Notation

Build Status Gem Version Code Climate Test Coverage Issue Count

RSON convert a string representation of Ruby simple objects to Ruby objects. It does not use eval() but the parser gem to really parse strings.

Supported Types :

  • Integer
  • Float
  • Symbol
  • String (multi-line)
  • Nil
  • TrueClass
  • FalseClass
  • Array
  • Hash

Examples

Loading from a string

require 'rson'

buffer = %q({ a: 1, 2 => true, 'c' => :d })
Serializer::RSON.load(buffer:buffer) # => { a: 1, 2 => true, 'c' => :d }

Loading from a file

require 'rson'

Serializer::RSON.load(
  file_name:'config.rson',
  file_path:'/etc/some_application'
) # => { a: 1, 2 => true, 'c' => :d }

Installation

gem install rson

Releases

No releases published

Packages

No packages published

Languages