markbates (owner)

Revisions

gist: 27027 Download_button fork
public
Public Clone URL: git://gist.github.com/27027.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'configatron'
 
store = Configatron::Store.new
 
store.foo = :bar
 
puts store.foo
 
store.one.two.three = [1,2,3]
 
puts store.inspect