examples/properties/simple.rb in transcriber-0.0.9 vs examples/properties/simple.rb in transcriber-0.0.10

- old
+ new

@@ -2,9 +2,9 @@ class Customer < Transcriber::Resource property :login end -@root = Customer.parse({"login" => 'jackiechan2010'}).first +@root = Customer.parse({login: 'jackiechan2010'}).first puts "root: #{@root.inspect}" puts "resource: #{@root.resource}"